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

前端 未结 4 967
再見小時候
再見小時候 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:30

    //Just add 
    
    RewriteBase /
    //after 
    RewriteEngine On
    
    //and you are done....
    
    //so it should be 
    
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [QSA,L]
    

提交回复
热议问题