PbootCMS详情页url设置成 网址/id.html

最近网友想把PB详情页URL形式改成 网址/id.html的形式
方法如下:适用PBOOTCMS3.0.9版本 简单实现,可能会引起未知错误!概不负责!

在ParserController.php文件中找到parserLink方法

修改elseif ($page == 'content') 里面的链接生成语句改成

if ($contentfilename) {
$link = Url::home($contentfilename, true);
}
else{
$link = Url::home($id, true);
}

然后在IndexController.php文件中大概118行左右修改成如下代码

if (! ! $data = $this->model->getContent($contenturl)) {
$iscontent = true;
}elseif (! ! $sort = $this->model->getSort($path)) {

注意底下大括号匹配