SO网友:mh. bitarafan
首先,你不应该删除。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
然后转到wp config。php并添加以下行:
define( \'WP_HOME\', \'http://youresite.com\' );
define( \'WP_SITEURL\', \'http://youresite.com\' );
现在转到wp admin,希望您的重定向问题会得到解决
解决问题后,不要忘记从wp配置中删除最后一个代码。