Request exceeded the limit of 10 internal redirects due to probable configuration error

前端 未结 4 965
再見小時候
再見小時候 2020-12-05 00:01

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

4条回答
  •  不思量自难忘°
    2020-12-05 00:27

    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

提交回复
热议问题