typecho迁移时,如果更换了域名,原已发表的文章的图片等链接路径还是没有修改过来的,需要操作下数据库。
1.替换首页文章内容
表名:typecho_contents
UPDATE `typecho_contents` SET `text` = REPLACE(`text`,'旧域名','新域名');
2.替换文章字段表
表名:typecho_fields
UPDATE `typecho_fields` SET `str_value` = REPLACE(`str_value`,'旧域名','新域名');