Hi all, i have a .htaccess file thats nice and small
Code:
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [L]
But for some random reason it appears to be looping
my page gives me an error 500
and my error log has
Code:
[Fri Feb 18 08:18:18 2011] [error] [client 127.0.0.1] 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.
Could any one suggest where the loop is that would causes this?
P.S its only started happening when i have added files into my system using this HTACCESS
ok some other rewrite rule must have been affecting it i changed the name of the public_html folder away then back and it started working again.