typecho教程:批量替换文章内容中的旧地址
批量替换文章内容中的旧地址
09-29
修改网站地址后,会有好多附件地址不变,附一个SQL语句,应用于phpmyadmin,批量修改:
UPDATE `typecho_contents` SET `text` = REPLACE(`text`,'旧域名地址','新域名地址');
同样可以替换其它表的内容:
UPDATE `typecho_golinks` SET `target` = REPLACE(`target`,'a.b','b.c');
替换其它内容:
UPDATE `typecho_fields` SET `str_value` = REPLACE(`str_value`,'hostkvm-com','hostkvm-vpsmm');