这是我的网站:http://thiencheong.com.my/, 我首先在ver2目录中创建了我的WP站点,当我准备好让它上线时,我将其克隆到主目录中。
但现在每当我访问http://thiencheong.com.my/ 网站自动重定向到http://thiencheong.com.my/ver2/
我检查了数据库,home和siteurl都是http://thiencheong.com.my/
我的域和上没有设置重定向。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
我们将非常感谢您的帮助,谢谢!