把sort去掉,直接显示网址/分类别名 的形式,这样有利于搜索引擎收录,也使网址更加简明。
emlog去除分类目录前的sort修改方法:
首先确认你的站点支持Rewrite,确认支持Rewrite后进行如下操作:
1.修改include\lib\url.php文件,删除第102行和第104行的 sort/
2.修改include\lib\dispatcher.php文件,把第109行的
return $path;
替换成
if($path!="/"&&substr($path,0,6)!="/sort/"&&substr($path,0,2)!="/?") {
return "/sort".$path;
} else {
return $path;
}
3.修改include\lib\dispatcher.php文件,把第109行的
$path = str_ireplace('index.php', '', $path);
替换成
$path = str_ireplace('/index.php', '', $path);
教程结束,关注杨小杰获取更多资讯教程!
发表评论: