apache报错导致停止工作

在说正事之前,我要推荐一个福利:你还在原价购买阿里云、腾讯云、华为云服务器吗?那太亏啦!来这里,新购、升级、续费都打折,能够为您省60%的钱呢!2核4G企业级云服务器低至69元/年,点击进去看看吧>>>),好了下面开始说正事:


一个apache的报错

Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace 

你们有没有遇到过
用的是tp5 根据网上的方法修改过.htaccess依然报错

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On
  RewriteBase /zwfw
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

</IfModule>

tp默认的htaccess是

<IfModule mod\_rewrite.c>  
Options +FollowSymlinks -Multiviews  
RewriteEngine On  
RewriteCond %{REQUEST\_FILENAME} !-d  
RewriteCond %{REQUEST\_FILENAME} !-f  
RewriteRule ^(.\*)$ index.php/$1 \[QSA,PT,L\]  
</IfModule>  

有可能是因为某个地址触发url重写,重写后又触发重写就造成了死循环

不知道为什么这个地址会报这个错
请教下各位大神,我找了一天没有找到问题

郑重声明:本站部分内容转载自网络,版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们(QQ/微信153890879)修改或删除,多谢。