0

服务器遇到内部错误或配置错误,无法完成您的请求。

请联系服务器管理员并告知他们错误发生的时间,以及您在此错误之前执行的操作。

在服务器错误日志中我发现了这个......

[Sun Sep 29 11:41:38 2013] [11364218] [core:error] [client 59.91.129.173:61139] AH00124: 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

//我的htaccess是

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L] 

如果我删除我的 htaccess 那么也会出现这个问题

我被这个问题困住了

请帮我解决这个问题

提前致谢

4

1 回答 1

3

您的 .htaccess 卡在重定向循环中。例如,http 转发到 https,转发回 http,回到 https,永远。配置的站点实际上无法提供页面,并且浏览器正在抱怨它。

如果您为我们发布 .htaccess(根据需要更改敏感信息),那么我们可以准确地告诉您出了什么问题。

于 2013-09-30T14:22:56.743 回答