illmano
Старатель
- Регистрация
- 20 Июн 2012
- Сообщения
- 172
- Реакции
- 14
- Автор темы
- #1
Добрый день.
Переезжаю на vds и столкнулся с такой проблемой.
Сайт выдает 500 Internal Server Error
В логах
Request exceeded the limit of 10 internal redirects due to probable configuration error. Use LimitInternalRecursion to increase the limit if necessary. Use LogLevel debug to get a backtrace.
ТП сказала что проблемы в .htaccess и посоветовала обратиться к разработчикам или программисту )))
Вот содержимое моего .htaccess
Подскажите что подправить?
Переезжаю на vds и столкнулся с такой проблемой.
Сайт выдает 500 Internal Server Error
В логах
Request exceeded the limit of 10 internal redirects due to probable configuration error. Use LimitInternalRecursion to increase the limit if necessary. Use LogLevel debug to get a backtrace.
ТП сказала что проблемы в .htaccess и посоветовала обратиться к разработчикам или программисту )))
Вот содержимое моего .htaccess
Код:
DirectoryIndex index.html index.php
<IfModule mod_rewrite.c>
RewriteEngine on
# Pleas note that RewriteBase setting is obsolete use it only in case you experience some problems with SEO addon.
# Some hostings require RewriteBase to be uncommented
# Example:
# Your store url is http://www.yourcompany.com/store/cart
# So "RewriteBase" should be:
# RewriteBase /store/cart
# RewriteBase /
RewriteCond %{REQUEST_FILENAME} !\.(png|gif|ico|swf|jpe?g|js|css)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php?sef_rewrite=1 [L,QSA]
</IfModule>
php_value max_input_vars 100000