UPDATE wp_posts SET post_content = replace(post_content, ‘http://原域名.com’ , ‘https://替换域名.com’);

UPDATE wp_comments SET comment_content = replace(comment_content,  ‘http://原域名.com’ , ‘https://替换域名.com’ );

UPDATE wp_comments SET comment_author_url = replace(comment_author_url, ‘http://原域名.com’ , ‘https://替换域名.com’);

UPDATE wp_users SET user_url = replace(user_url, ‘http://原域名.com’ , ‘https://替换域名.com’);