iis-ssl憑證 - thinkphp 設定ssl 強制https存取時 如何移除index.php後退出?
我想大声告诉你
我想大声告诉你 2017-05-16 13:09:33
0
2
960

thinkphp 設定ssl 強制https造訪時 如何移除index.php後退出?

阿里雲IIS7.5環境下 配置好了http 重寫向https

可輸入http://www.xxx.com 後 會重新導向到https://www.xxx.com/index.php/

如何去除這個index.php???

我想大声告诉你
我想大声告诉你

全部回覆(2)
左手右手慢动作

index.php是thinkphp的入口文件

phpcn_u1582

我的實作方法

不用設定iis url重寫模組

直接在thinkphp 入口檔案寫入以下程式碼即可 (iis憑證需要設定)

if ($_SERVER['HTTPS'] != "on") {
        $index = strstr($_SERVER['REQUEST_URI'],"index.php");
        if($index){
            $str = preg_replace('/\/index.php/', '', $_SERVER['REQUEST_URI']);
            $url = "https://" . $_SERVER["SERVER_NAME"] . $str;
            header("location:".$url);
        }
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板