typecho 更换域名后图片不显示问题
sqlite
我这里使用的sqlite数据库
【SQLite】使用replace替换字段中的字符
如:替换production表中的specification字段中的两个空格为一个空格:
update production set specification =replace(specification,' ',' ') 命令
在typecho中
UPDATE `typecho_fields` SET `str_value` = REPLACE(`str_value`,'旧网址','新网址');update `typecho_contents` set text=replace(text,'http://me.i-huanjie.com/','https://me.googler.top/')
> Affected rows: 665
> 时间: 0.075s