黑帽联盟

标题: 帝国cms后台支持https访问设置 [打印本页]

作者: yun    时间: 2017-4-25 22:11
标题: 帝国cms后台支持https访问设置
修改:
/e/class/connect.php

    function eReturnDomain(){
            $domain=RepPostStr($_SERVER['HTTP_HOST'],1);
            if(emptyempty($domain))
            {
                    return '';
            }
            return 'http://'.$domain;
    }



修改为

    function eReturnDomain(){
            $domain=RepPostStr($_SERVER['HTTP_HOST'],1);
            if(emptyempty($domain))
            {
                    return '';
            }
            return ($_SERVER['HTTPS'] ? 'https':'http').'://'.$domain;
    }


个人使用中遇到的问题,解决了,分享一下。






欢迎光临 黑帽联盟 (https://bbs.cnblackhat.com/) Powered by Discuz! X2.5