加载某些页面会导致AH00124重定向错误

时间:2019-03-26 18:23:27

标签: wordpress apache .htaccess redirect webserver

在我的Wordpress网站上加载某些页面时,我开始出现错误500,并发现是由于AH00124重定向错误。

[error] - www.johndoe.com - 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 https://www.johndoe.com/

从字面上看,这是从无处出现的,因为我没有对该站点进行重大更改,即使回滚了所有可能的更改,问题仍然存在。 这是我的.htaccess:

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?johndoe.com$
RewriteCond %{REQUEST_URI} !^/sito/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /sito/$1
RewriteCond %{HTTP_HOST} ^(www.)?johndoe.com$
RewriteRule ^(/)?$ sito/index.php [L] 
</IfModule>

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

以下是导致错误的页面: /博客 /wp-admin/edit.php(发布时) 2019/03/26 / any-article /

我认为我无法登录Apache服务器,因为我们只为Web托管付费,所以我想我无法查看回溯。

0 个答案:

没有答案