wordpress更改IP后,访问异常问题处理方式
安装wordpress的时候里面的域名、ip都已固定。安装好后的通过IP访问,如http://192.168.1.1即打开首页,但是日后需要更改系统IP,改为192.168.2.1,这个时候在通过http://192.168.1.1访问就出现异常了,并且附件打开异常~
处理方式:
1、远程至数据库
执行如下语句:
update wp_options set option_value=replace(option_value,'192.168.1.1','192.168.2.1') where option_value LIKE '{762543b0bd26c03e246ab03142f632f804e6711be7925c5ff269e230a03d75ed}192.168.1.1{762543b0bd26c03e246ab03142f632f804e6711be7925c5ff269e230a03d75ed}'
update wp_links set link_url=replace(link_url,'192.168.1.1','192.168.2.1') where link_url LIKE '{762543b0bd26c03e246ab03142f632f804e6711be7925c5ff269e230a03d75ed}192.168.1.1{762543b0bd26c03e246ab03142f632f804e6711be7925c5ff269e230a03d75ed}'
update wp_posts set post_content=replace(post_content,'192.168.1.1','192.168.2.1') where post_content LIKE '{762543b0bd26c03e246ab03142f632f804e6711be7925c5ff269e230a03d75ed}192.168.1.1{762543b0bd26c03e246ab03142f632f804e6711be7925c5ff269e230a03d75ed}'
将所有包含旧ip192.168.1.1全部改为新ip192.168.2.1
还要注意wp-config.php文件,里面的DB_HOST配置信息,可以改为新的ip192.168.1.102,也可以直接保持localhost
共有 0 条评论