Столкнулся с такой проблемой, сервер ругается на директиву в htaccess -
RewriteRule ^(.*)$ index.php
Ругается таким образом, что в конце каждой страницы добавляет несколько предложений со следующим содержанием:
OK
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
но сам реврайт обрабатывается нормально, все запросы идут на
index.php
После того как перед
RewriteRule ^(.*)$ index.php добавил строки:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
- на главной надпись об ошибке исчезла, но на остальных страницах осталась.
Впервые сталкиваюсь с такой проблемой. Подскажите, в чем может быть дело и в какую сторону копать?
Привожу все содержимое htaccess:
AddDefaultCharset UTF-8
RewriteEngine on
ErrorDocument 404 /404
RewriteCond %{HTTP_HOST} ^site\.com$ [NC]
RewriteRule ^(.*)$ www.site.com/$1 [R=301,L]
RewriteCond %{SCRIPT_FILENAME} !\.(jpg|gif|png|ico|css|js|zip|rar|html|cur|pdf|xls|doc|ppt|ttf|otf|eot|woff|woff2|swf)$ [OR,NC]
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !/robots.txt$
RewriteCond %{SCRIPT_FILENAME} !/sitemap.xml$
RewriteCond %{SCRIPT_FILENAME} !/favicon.ico$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php