只更换域名

1
2
3
4
UPDATE wp_options SET option_value = replace(option_value, 'hellowindows.cn','wp.hellowindows.cn') ;
UPDATE wp_posts SET post_content = replace(post_content, 'hellowindows.cn','wp.hellowindows.cn') ;
UPDATE wp_comments SET comment_content = replace(comment_content, 'hellowindows.cn', 'wp.hellowindows.cn') ;
UPDATE wp_comments SET comment_author_url = replace(comment_author_url, 'hellowindows.cn', 'wp.hellowindows.cn') ;

hellowindows.cn:旧域名

wp.hellowindows.cn:新域名