首页 > CMS > 织梦DEDE > 正文

DEDECMS批量修改默认文章和列表命名规则的方法

2024-07-12 09:07:24
字体:
来源:转载
供稿:网友
很多人因为添加分类而苦恼,尤其是批量添加的时候,必须要重新修改一下文章命名规则和列表命名规则,都是为了做SEO。如果进行默认值的修改,就会事半功倍。不多说。
 
一、DEDE5.5修改默认文章命名规则。
 
1、单独添加分类默认修改,修改文件:include/common.inc.php。
查找代码:
Copy to ClipboardLiehuo.Net Codes引用的内容:[www.CUOxin.com]
//文档的默认命名规则 
$art_shortname = $cfg_df_ext = '.html'; 
$cfg_df_namerule = '{typedir}/{Y}/{M}{D}/{aid}'.$cfg_df_ext;
2、批量添加分类默认修改,修改文件:dede/templets/catalog_add_quick.htm
查找代码:
Copy to ClipboardLiehuo.Net Codes引用的内容:[www.CUOxin.com]
<tr> 
<td height="26" class='bline'>文章命名规则:</td> 
<td class='bline'><input name="namerule" type="text" id="namerule" value="{typedir}/{Y}{M}{D}/{aid}.html" size="40" class="pubinputs" /> 
<img src="img/help.gif" alt="帮助" width="16" height="16" border="0" style="cursor:pointer" onClick="ShowHide('helpvar2')" /> </td> 
</tr>
{typedir}/{Y}{M}{D}/{aid}修改成自己需要的即可。注意修改一定要保持一致。
 
二、DEDE5.5修改默认列表命名规则。
 
这个需要修改两个文件:
1、单独添加分类默认修改,修改文件:dede/templets/catalog_add.htm
查找代码:
Copy to ClipboardLiehuo.Net Codes引用的内容:[www.CUOxin.com]
<tr> 
<td height="26">列表命名规则:</td> 
<td> 
<input name="namerule2" type="text" id="namerule2" value="{typedir}/list_{tid}_{page}.html" class="pubinputs" style="width:250px" /> 
<img src="img/help.gif" alt="帮助" width="16" height="16" border="0" style="cursor:pointer" onClick="ShowHide('helpvar3')"/></td> 
</tr>
2、批量添加分类默认修改,修改文件:dede/templets/catalog_add_quick.htm
查找代码:
Copy to ClipboardLiehuo.Net Codes引用的内容:[www.CUOxin.com]
<tr> 
<td height="26">列表命名规则:</td> 
<td><input name="namerule2" type="text" id="namerule2" value="{typedir}/list_{tid}_{page}.html" size="40" class="pubinputs" /> 
<img src="img/help.gif" alt="帮助" width="16" height="16" border="0" style="cursor:pointer" onClick="ShowHide('helpvar3')" /></td> 
</tr>
{typedir}/list_{tid}_{page}修改成自己需要的即可。注意修改一定要保持一致。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表