這是我的.htaccess文件:重定向所有請求到index.php的.htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
我收到500內部服務器錯誤。此命令後: 貓/var/log/apache2/error.log 我得到這個錯誤:
AH00124: 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.
請幫我理清這一點?
它存在那裏。 –
然後只是這個規則不能導致重寫循環 – anubhava
什麼版本的apache? – Will