suchen

Heim  >  Fragen und Antworten  >  Hauptteil

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 Tage vor950

Antworte allen(2)Ich werde antworten

  • ringa_lee

    ringa_lee2017-05-16 13:11:33

    index.php是thinkphp的入口文件

    Antwort
    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);
            }
    }

    Antwort
    0
  • StornierenAntwort