apache报错导致停止工作

一个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重写,重写后又触发重写就造成了死循环

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

阅读 752
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题