I\'m getting the following error in my CakePHP application:
Request exceeded the limit of 10 internal redirects due to probable configuration error. Use \'LimitInter
i solved this by http://willcodeforcoffee.com/2007/01/31/cakephp-error-500-too-many-redirects/ just uncomment or add this:
RewriteBase / RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
to your .htaccess file