thinkphp 設定ssl 強制https造訪時 如何移除index.php後退出?
阿里雲IIS7.5環境下 配置好了http 重寫向https
可輸入http://www.xxx.com 後 會重新導向到https://www.xxx.com/index.php/
如何去除這個index.php???
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);
}
}