帝國(guó)CMS模板的 返回首頁(yè) 會(huì)帶有 index.html 后綴。
通過(guò)以下方法修改可去掉index.html
找到e/class/connect.php文件
查找:
//返回首頁(yè)地址function ReturnSiteIndexUrl(){ global $public_r; if($public_r['indexpagedt']) { $public_r['indextype']='.php'; } $file=$public_r['newsurl'].'index'.$public_r['indextype']; return $file;}
修改為:
//返回首頁(yè)地址function ReturnSiteIndexUrl(){ global $public_r; if($public_r['indexpagedt']) { $public_r['indextype']='.php'; } $file=$public_r['newsurl']; return $file;}
也就是去掉 $file=$public_r['newsurl']; 后綴。
版權(quán)聲明: 本站資源均來(lái)自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: 帝國(guó)cms 7.0版返回首頁(yè)帶.index.html的解決辦法