搜尋

首頁  >  問答  >  主體

iis-ssl憑證 - thinkphp 設定ssl 強制https存取時 如何移除index.php後退出?

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

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

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

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

我想大声告诉你我想大声告诉你2783 天前948

全部回覆(2)我來回復

  • ringa_lee

    ringa_lee2017-05-16 13:11:33

    index.php是thinkphp的入口文件

    回覆
    0
  • phpcn_u1582

    phpcn_u15822017-05-16 13:11:33

    我的實作方法

    不用設定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);
            }
    }

    回覆
    0
  • 取消回覆