I have this directive in my .htaccess
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /index.php?request=$1
This should rewrite all requests to index.php.
Sporadically, especially during peak times, I'm getting 500 internal server errors.
This is what I have found in the logs:
Request exceeded the limit of 10 internal redirects due to probable configuration error.
It's strange, because it's happening for requests which most of the time are working just fine.
Has anybody any explanation for this?