登录后,我将重定向到example.com/wp-admin/
, 其中包含“ERR\\u TOO\\u MANY\\u REDIRECTS”消息。如果我输入example.com/wp-admin/index.php
, 一切正常。我的wp-config.php
看起来不错。这不是多站点设置。
我的.htaccess
具有以下特性:
# 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
在中禁用所有插件、更改主题和硬代码siteurl和home值
config.php
没有解决问题。
有没有办法解决这个问题?