DeDeCMS怎么替换文章内所有的链接
程序员文章站
2022-06-06 18:40:21
...
如题:DeDeCMS怎么替换文章内所有的链接
例如:
例如:
abc1
abc2
abc3
可以写成PHP文件或mysql语句
回复内容:
如题:DeDeCMS怎么替换文章内所有的链接
例如:
abc1
abc2
abc3
可以写成PHP文件或mysql语句
dede后台有批量替换的
找到存放文章的数据表,例如叫tablename ,保存文章内容的字段叫 content
执行下列语句
sql
update tablename set content =replace(content,"httpA","httpB")
推荐阅读