romanag
Новичок
После переноса файлов проекта с windows denwer на unix хостинг страницы сайта (кроме главной) начали выдавать странные ошибки. В основном это "No input file specified."
В интернете все пишут, да и я догадываюсь, что проблема в файле .htaccess.
Как только не пробовал изменить его в соответствии с найденной информацией - в результате неудача.
Пробовал изменить строку
RewriteRule .* index.php/$0 [PT]
На
RewriteRule .* index.php?kohana_uri=$0 [PT,L,QSA]
или на
RewriteRule .* index.php [L]
или на
RewriteRule .* index.php?kohana_uri=$0 [PT,L,QSA]
или на
RewriteRule^(.*)$ index.php?/$1 [L]
или так как указано в этой статье
http://sagip.ru/pages/kohana/kohana_no_input_file_specified
В результате при переходе на различные внутренние страницы получаю разные ошибки (хотя на локальном хостинге все работало нормально)
Установил права на все файлы и папки 777
Версия коханы 3.3.3
Версия php 5.3 (на обеих серверах)
Мой .htaccess:
# Turn on URL rewriting
RewriteEngine On
# Installation directory
RewriteBase /
# Protect hidden files from being viewed
<Files .*>
Order Deny,Allow
Deny From All
</Files>
# Protect application and system files from being viewed
RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]
RewriteCond %{HTTP_HOST} ^www\.site-content-protection.com$ [NC]
RewriteRule ^(.*)$ http://site-content-protection.com/$1 [R=301,L]
Помогите пожалуйста решить проблему...
В интернете все пишут, да и я догадываюсь, что проблема в файле .htaccess.
Как только не пробовал изменить его в соответствии с найденной информацией - в результате неудача.
Пробовал изменить строку
RewriteRule .* index.php/$0 [PT]
На
RewriteRule .* index.php?kohana_uri=$0 [PT,L,QSA]
или на
RewriteRule .* index.php [L]
или на
RewriteRule .* index.php?kohana_uri=$0 [PT,L,QSA]
или на
RewriteRule^(.*)$ index.php?/$1 [L]
или так как указано в этой статье
http://sagip.ru/pages/kohana/kohana_no_input_file_specified
В результате при переходе на различные внутренние страницы получаю разные ошибки (хотя на локальном хостинге все работало нормально)
Установил права на все файлы и папки 777
Версия коханы 3.3.3
Версия php 5.3 (на обеих серверах)
Мой .htaccess:
# Turn on URL rewriting
RewriteEngine On
# Installation directory
RewriteBase /
# Protect hidden files from being viewed
<Files .*>
Order Deny,Allow
Deny From All
</Files>
# Protect application and system files from being viewed
RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]
RewriteCond %{HTTP_HOST} ^www\.site-content-protection.com$ [NC]
RewriteRule ^(.*)$ http://site-content-protection.com/$1 [R=301,L]
Помогите пожалуйста решить проблему...