热度 20
2016-1-22 22:33
1058 次阅读|
0 个评论
1.更改文章中的内容 Dede教程 -598080707.NET update dede_addonarticle set body=replace(body,'原来的字符','替换后的字符') 例如:update dede_addonarticle set body=replace(body,'音乐下载','音乐试听) 2.更改缩略图目录 SQL命令:update dede_archives set litpic=replace(litpic,'原来的字符','替换后的字符') 例如:update dede_archives set litpic=replace(litpic,'uplimg,'tupian') 3.批量替换文章模型中内容部分图片链接路径. update dede_addonarticle set body=replace(body,'src="http://www.chenchr.com','src="http://chenchr.com'); 例如:把图片路径由原来的 http://www.chenchr.com替换成http://chenchr.com 4.批量替换文章模型中内容部分超链接. update dede_addonarticle set body=replace(body,'href="http:// www.chenchr.com ','href="http:// chenchr.com '); 例如:把文章模型中的超链接由原来的 http://www.chenchr.com替换成http:// chenchr.com 5.批量替换文章模型中内容部分图片锚文本文字. update dede_addonarticle set body=replace(body,'alt="http:// www.chenchr.com /','alt="http:// .chenchr.com /'); 例如:把文章模型中的图片锚文本信息由原来的http:// www.chenchr.com 替换成 http:// chenchr.com 6.批量替换软件模型内容部分超链接 update dede_addonsoft set introduce=replace(introduce,'href="http:// chenchr.com /js/ys.html','href="http:/ chenchr.com /index.html'); 例如:把软件模型内容中超链接由原来的 http://www.chenchr.com/js/ys.html替换成http:/chenchr.com/index.html 7.批量替换文章模型中作者字段 update dede_archives set writer=replace(writer,'http://www. chenchr.com ','http:// chenchr.com '); 例如:把文章模型中的作者由原来的 http://www.chenchr.com替换成http:// chenchr.com 8.批量替换文章模型中来源字段 update dede_archives set source=replace(source,'心情驿站 WWW.JINQQ.NET','DEDE技术吧 598080707.NET'); 例如:把文章模型中的帖子来源由原来的工业炉www. chenchr.com 替换成 电炉 chenchr.com 9.批量替换文章命名规则 DEDE技术吧 -598080707.NET update `dede_arctype` set namerule='{typedir}/{aid}.html'; 例如:把站内所有文章模型命名规则全部替换成{ typedir}/{aid}.html这样一种形式 10批量替换软件模型演示地址超链接 update dede_addonsoft set writer=replace(officialUrl,'http:/www. chenchr.com ','http:// chenchr.com '); 例如:把软件模型原始地址超链接由原来的 http:/www.chenchr.com替换成http:// chenchr.com