Apache LimitInternalRecursion

疯人院主任 发布于 2012/03/20 11:10
阅读 1K+
收藏 0

开启ssl,访问的时候出现了如下错误。

Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion'

 

我的.htaccess 重写规则是

<IfModule mod_rewrite.c>
    RewriteEngine on

    RewriteBase /exchange

    RewriteRule ^(/)?$ index.php/$1 [L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

求解!!!!

 

 

加载中
OSCHINA
登录后可查看更多优质内容
返回顶部
顶部