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

Wordpress 加载某些页面会导致AH00124重定向错误,wordpress,apache,.htaccess,redirect,webserver,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 'LogLeve

我在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

重新启动发动机
重写cond%{HTTP_HOST}^(www.)?johndoe.com$
重写cond%{REQUEST_URI}^/司徒/
重写cond%{REQUEST_FILENAME}-F
重写cond%{REQUEST_FILENAME}-D
重写规则^(.*)$/sito/$1
重写cond%{HTTP_HOST}^(www.)?johndoe.com$
重写规则^(/)?$sito/index.php[L]
#开始WordPress
重新启动发动机
重写基/
重写规则^index\.php$-[L]
重写cond%{REQUEST_FILENAME}-F
重写cond%{REQUEST_FILENAME}-D
重写规则/index.php[L]
#结束WordPress
以下是导致错误的一些页面: /博客 /wp admin/edit.php(发布时) 2019/03/26/任何物品/

我想我不能登录Apache服务器,因为我们只为一个web主机付费,所以我想我不能查看回溯