近網(wǎng)友想把PB詳情頁(yè)URL形式改成 網(wǎng)址/id.html的形式,更符合SEO優(yōu)化。實(shí)現(xiàn)目標(biāo):欄目XXX.com/news/gsxw/ 詳情XXX.com/news/id.html
方法如下:適用PBOOTCMS3.0.9版本 簡(jiǎn)單實(shí)現(xiàn),可能會(huì)引起未知錯(cuò)誤!概不負(fù)責(zé)!
在ParserController.php文件中找到parserLink方法
修改elseif ($page == 'content') 里面的鏈接生成語(yǔ)句改成
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)) {
版權(quán)聲明: 本站資源均來(lái)自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: pbootcms詳情頁(yè)Url鏈接統(tǒng)一改為網(wǎng)站/id.html的方法