会员制购物APP
让生活更精致更美好!

WordPress 批量替换旧网址或内容的 Mysql 语句 网站迁移

在WordPress程序的使用中,经常遇到新老域名替换等操作,通常我们会操作Mysql数据库来更快更完整的进行全量替换。

在Mysql管理界面执行以下sql语句:

注意:以下代码中的 000000 代表旧的网址, 111111 代表新的网址,都需要改成你自己的。建议操作前备份数据库以防止手残。

比如:你想把老的域名 https://dumaimai.cn 替换新的域名 https://www.dumaimai.cn

解释
update wp_posts set `post_content`=replace(`post_content`,'000000','111111');
update wp_posts set `post_excerpt`=replace(`post_excerpt`,'000000','111111');
update wp_posts set `guid`=replace(`guid`,'000000','111111');
update wp_commentmeta set `meta_value`=replace(`meta_value`,'000000','111111');
update wp_comments set `comment_author_url`=replace(`comment_author_url`,'000000','111111');
update wp_comments set `comment_content`=replace(`comment_content`,'000000','111111');
update wp_postmeta set `meta_value`=replace(`meta_value`,'000000','111111');
update wp_usermeta set `meta_value`=replace(`meta_value`,'000000','111111');
update wp_users set `user_url`=replace(`user_url`,'000000','111111');

PS:此方法并未操作替换 wp_options 表中的数据,因为该表中存在一些非常规字符串的数据类型,所以不建议一次性操作,当然,如果你头铁想试一试,也是可以再执行以下sql语句的。此操作有风险,一些主题或插件的配置可能会失效了。

update wp_options set `option_value`=replace(`option_value`,'000000','111111');

 

赞(0) 打赏
未经允许不得转载:嘟买买博客 » WordPress 批量替换旧网址或内容的 Mysql 语句

登录

找回密码

注册