帝国CMS教程
帝国CMS模板网>帝国CMS教程

帝国cms 7.0版返回首页带.index.html的解决办法

来源:帝国CMS模板网 作者:帝国CMS教程 时间:2013-06-02
浏览:7.8千+ 收藏 点赞(7)

找到e/class/connect.php文件,找到以下代码:

//返回首页地址

改成

//返回首页地址
function ReturnSiteIndexUrl(){
        global $public_r;
        if($public_r['indexpagedt'])
        {
                $public_r['indextype']='.php';
        }
        $file=$public_r['newsurl'];
        return $file;
}

修改的地方在

$file=$public_r['newsurl'];

去掉了后面的后缀

帝国CMS模板