【发布时间】:2018-11-23 12:08:31
【问题描述】:
昨天,当我在我的 wordpress 网站的常规设置中“搞乱”链接时,我发现自己在 500 条内部服务器错误消息面前,我惊慌失措,因为我以前从未见过这样的事情。经过深入研究,我发现确切的问题是:
[core:error] [pid 9876:tid 1316] [client ::1:64092] 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., referer: http://localhost/eshop/wp-admin/options-general.php
我的 .htaccess 包含这个:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /eshop/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /eshop/index.php [L]
</IfModule>
# END WordPress
由于我不是开发人员,所有这些对我来说有点陌生,我不知道如何处理它们。任何帮助都将不胜感激,因为从昨天开始我不知道如何访问我的网站。
提前谢谢你, 法尼
【问题讨论】:
标签: wordpress internal-server-error