日历存档: 2012 年 7 月 26 日

【转】wordpress更换域名

分类:折腾日期:2012-07-26 - 18:17:34评论:23条作者:老谢

//替换评论者的链接  
UPDATE wp_comments SET comment_author_url = REPLACE( comment_author_url, ’http://oldurl’, ’http://newurl’ );  
//替换文章中的链接  
UPDATE wp_posts SET post_content = REPLACE( post_content, ’http://oldurl’, ’http://newurl’ );  
//替换评论者的电子邮箱地址  
UPDATE wp_comments SET comment_author_email = REPLACE( comment_author_email, ’old-email@address.com’, ’new-email@address.com’ );  
//替换评论者的昵称  
UPDATE wp_comments SET comment_author = REPLACE( comment_author, ’old_author’, ’new_author’ );

PS:出处实在找不到了,这里向原作者表示抱歉,之前保存到本地,为了方便查阅就贴到了博客。