我在domain.com上构建了wp,并在127.0.0.1上构建了其他wp。现在我从我的后端在domain.com上转储数据库,并使用命令转储到本地机器上的mysql数据库。
mysqldump -u root -p wpdatabase > back.sql #after i connect the remote vps
#download the back.sql file into local machine with filezilla on /home/back.sql
mysql -u root -ppassword wp_test < /home/back.sql #on local console
当我输入127.0.0.1时,我的wp处于良好状态,但是当我想登录时,
在firefox中输入127.0.0.1/wp-login.php
,
它跳到domain.com/wp-login.php
。
如何解决?
答案 0 :(得分:1)
您可以在RELOCATE
中使用wp-config.php
常量:
define( 'RELOCATE', true );
然后导航到http://newdomain.com/wp-login.php并登录。 WordPress将自动更新数据库。在您成功登录后取消设置此行。
答案 1 :(得分:0)
您需要更新数据库中domain.com
的所有引用。查看the Codex