在WordPress程序的使用中,经常遇到新老域名替换等操作,通常我们会操作Mysql数据库来更快更完整的进行全量替换。
在Mysql管理界面执行以下sql语句:
注意:以下代码中的 new.com 代表新的网址,old.com 代表旧的网址,都需要改成你自己的。建议操作前备份数据库以防止手残。
update wp_posts set `post_content`=replace(`post_content`,'new.com','old.com');
update wp_posts set `post_excerpt`=replace(`post_excerpt`,'new.com','old.com');
update wp_posts set `guid`=replace(`guid`,'new.com','old.com');
update wp_commentmeta set `meta_value`=replace(`meta_value`,'new.com','old.com');
update wp_comments set `comment_author_url`=replace(`comment_author_url`,'new.com','old.com');
update wp_comments set `comment_content`=replace(`comment_content`,'new.com','old.com');
update wp_postmeta set `meta_value`=replace(`meta_value`,'new.com','old.com');
update wp_usermeta set `meta_value`=replace(`meta_value`,'new.com','old.com');
update wp_users set `user_url`=replace(`user_url`,'new.com','old.com');
PS:此方法并未操作替换 wp_options 表中的数据,因为该表中存在一些非常规字符串的数据类型,所以不建议一次性操作,当然,如果你头铁想试一试,也是可以再执行以下sql语句的。此操作有风险,一些主题
update wp_options set `option_value`=replace(`option_value`,'new.com','old.com');
或插件的配置可能会失效了。
本站资源大多来自网络,如侵犯你的权益请联系管理员 邮箱:63059697@qq.com 我们会第一时间进行审核删除。站内资源为网友个人学习或测试研究使用,未经原版权作者许可,禁止用于任何商业途径!请在下载24小时内删除!
如果遇到 付费才可下载浏览的文章,建议开通本站超级会员。全站所有资源“任意下免费看”。本站资源部分采用 exe自压缩技术,为防止有人不了解自解压导致无法解压,强烈建议使用电脑端下载7-zip,zip、rar解压,推荐使用WinRAR。
暂无评论内容