iis-ssl证书 - thinkphp 配置ssl 强制https访问时 如何去掉index.php后辍?

查看:234
本文介绍了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???

解决方案

我的实现方法

不用配置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);
        }
}

使用上面的方法 有个问题 做seo 百度搜索不到 最后只有在模板中加入js代码
<!-- http to https -->
<script type="text/javascript">

    var url = window.location.href;
    if (url.indexOf("https") < 0) {
    url = url.replace("http:", "https:");
    window.location.replace(url);
    }

</script>

这篇关于iis-ssl证书 - thinkphp 配置ssl 强制https访问时 如何去掉index.php后辍?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆