wordpress更换域名

最近蛋疼实验室搬出墙外,现在记录下整个更换域名的过程。

1,申请新域名的ssl证书并上传到服务器。

2,修改nginx配置文件,并重启nginx。


3,修改wordpress。


4,替换数据库中的域名。

UPDATE wp_options SET option_value = replace( option_value, ‘https://qgdlsj.com‘, ‘https://danteng.org‘ ) WHERE option_name = ‘home’ OR option_name = ‘siteurl’;

UPDATE wp_posts SET post_content = replace( post_content, ‘https://qgdlsj.com‘, ‘https://danteng.org‘ ) ;

UPDATE wp_posts SET guid = replace( guid, ‘https://qgdlsj.com‘, ‘https://danteng.org‘ ) ;

UPDATE wp_comments SET comment_content = replace(comment_content, ‘ https://qgdlsj.com’, ‘ https://danteng.org’) ;

UPDATE wp_comments SET comment_author_url = replace(comment_author_url, ‘https://qgdlsj.com’, ‘ https://danteng.org’) ;


不知道为什么前台显示总是不正常,在上文基础上贴个正确的截图。

到此为止,wordpress更换域名的工作就完成了,还有邮箱之类尚未修改完成。

本文链接地址: https://danteng.org/wordpress-domain-change/