两种方法如下:
1、直接修改WordPress的数据库
update wp_options set option_value='目标网址' where option_name='siteurl';
update wp_options set option_value='目标网址' where option_name='home';
2、修改主题目录下的functions.php,在开头添加如下代码(/wp-content/themes/你使用的主题)
update_option("siteurl","目标网址");
update_option("home", "目标网址");