织梦如何批量替换栏目规则和替换内容规则
替换列表规则:
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为首页