导航
关闭

狼王King

当前位置:首页 > 网络教程 - 正文

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

  人参与 |更新时间: 2020年01月18日 23:31

帝国CMS模板的 返回首页 会带有 index.html 后缀。

通过以下方法修改可去掉index.html

找到e/class/connect.php文件

查找:

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

修改为:

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

也就是去掉 $file=$public_r['newsurl']; 后缀。

编辑:狼王(微信/QQ:1574808)

标签:   帝国CMS   帝国CMS教程   狼王King

来源:狼王King(微信/QQ:1574808),欢迎分享!

本文链接:https://www.iwolfking.com/jiaocheng/284.html

评论专区

留言与评论(共有 0 条评论)
表情:   
验证码: