服务器遇到内部错误或配置错误,无法完成您的请求。
请与服务器管理员联系,告知他们错误发生的时间以及您在此错误发生之前执行的操作。
在服务器错误日志中,我发现了这.........
[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,那么也会出现这个问题
我被困在这个问题上
请帮我解决这个问题
提前致谢
答案 0 :(得分:3)
您的.htaccess卡在重定向循环中。例如,http转发到https,转发回http,永远回到https。配置的站点实际上无法传递页面,浏览器正在抱怨它。
如果您为我们发布.htaccess(根据需要更改敏感信息),我们可以准确地告诉您错误。