在DEDECMS中,发布文章时可以自定义文件名,生成譬如:xxx.com/a/zidingyi.html 的URL文件
然而如果想将文章生成为目录形式呢?譬如:xxx.com/a/zidingyi/index.html
只需要简单一步即可搞定。
涉及文件:
include/helpers/channelunit.helper.php 189行
$articleRule = dirname($articleRule).‘/‘.$filename.$GLOBALS[‘cfg_df_ext‘];
改为:
$articleRule = dirname($articleRule).‘/‘.$filename.‘/index‘.$GLOBALS[‘cfg_df_ext‘];
友情提示:注意备份源文件
时间: 2024-10-16 16:27:04