DedeCMS 去掉文章及分类.html后缀的方法

方法很简单,找到根目录/include/channelunit.func.php 第150行左右的$sitepath = MfTypedir($sitepath); 在这行底下添加如下代码 if($ispart2){ return $typedir; } if($defaultname == index.html){ $defaultname = ; } 就可以了! 有些seo常识的站长应该都知道,去过可以去掉文件后缀.html/.htm变成目录的形式,是权重比较高的 比如说在dede5.3中 我们可以将 […]



方法很简单,找到根目录/include/channelunit.func.php
第150行左右的$sitepath = MfTypedir($sitepath);
在这行底下添加如下代码
if($ispart>2){
return $typedir;
}
if($defaultname == 'index.html'){
$defaultname = '';
}
就可以了!
有些seo常识的站长应该都知道,去过可以去掉文件后缀.html/.htm变成目录的形式,是权重比较高的

比如说在dede5.3中

我们可以将
http://liehuo.net/shuttle.html

修改为
http://liehuo.net/shuttle/
这样来增加我们的分类目录在搜索引擎中的目录


加载中~