织梦模板大全为站长朋友们提供精品织梦模板下载和免费织梦建站教程学习。
用户名:
密码:
注册

DedeCMS帮助中心

织梦如何批量替换栏目规则和替换内容规则
本站承接DedeCMS仿站服务,大家如有需要请联系QQ:121673232
本站所有商业模板均提供使用详细安装说明(含视频)
织梦如何批量替换栏目规则和替换内容规则

替换列表规则:
update dede_arctype set namerule2=replace(namerule2,'{typedir}/{tid}_{page}.shtml','{typedir}/{page}.htm');  

 以上SQL表示把列表规则为{typedir}/{tid}_{page}.shtml替换成{typedir}/{page}.htm

 

替换内页文档规则:

update dede_arctype set namerule=replace(namerule,'{typedir}/{Y}{M}{D}{aid}.shtml','{typedir}/{aid}.shtml'); 

以上SQL表示把内页文档规则为{typedir}/{Y}{M}{D}{aid}.shtml替换为{typedir}/{aid}.shtml

 

替换栏目首页非index.html:
update dede_arctype set isdefault=replace(isdefault,'1','0'); 
以上SQL表示把栏目首页不是index.html替换成index.html为首页