返回wp数据库导致错误跳过

时间:2015-02-24 09:46:18

标签: php mysql wordpress

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

如何解决?

2 个答案:

答案 0 :(得分:1)

您可以在RELOCATE中使用wp-config.php常量:

define( 'RELOCATE', true );

然后导航到http://newdomain.com/wp-login.php并登录。 WordPress将自动更新数据库。在您成功登录后取消设置此行。

更多信息:Changing The Site URL: Relocate method

答案 1 :(得分:0)

您需要更新数据库中domain.com的所有引用。查看the Codex