第1部分:使用场景
之前我是通过zblog建立博客网站的,后面通过调查分析,决定改用Wordpress进行建站。
所以我的数据全部都是从zblog迁移到wordpress。
这其中影响较大的问题,就是对于搜索引擎的收录网址问题。
为了尽量贴合搜索引擎原来的收录情况,涉及到修改postname和id的问题。
于是我就探讨了下修改id的方法。
第2部分:解决方案
以下是将id为111修改为222的案例,需要将文章表以及关联表同时更新。
update wp_posts set id = 111 where id = 222; update wp_posts set post_parent = 111 where post_parent = 222; update wp_term_relationships set object_id = 111 where object_id = 222; update wp_postmeta set post_id = 111 where post_id = 222; update wp_comments set comment_post_ID = 111 where comment_post_ID = 222;
© 版权声明
THE END
暂无评论内容