Typecho批量替换文章内链接与图片链接
进入typecho_contents表(文章内容表)
点击“SQL”输入下面的语句,点击“执行”
UPDATE `typecho_contents` SET `text` = REPLACE(`text`,'旧网址','新网址');
进入typecho_contents表(文章内容表)
点击“SQL”输入下面的语句,点击“执行”
UPDATE `typecho_fields` SET `str_value` = REPLACE(`str_value`,'旧网址','新网址');