PHP 在IIS8.5中实现http请求全部转换为https

一、添加 “ URL重写 ” 模块

二、添加http和https类型的域名绑定

三、在项目访问根目录添加文件web.config

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
        <rewrite>
            <rules>
                <rule name="Redirect to https" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTPS}" pattern="^OFF$" />
                        <add input="{HTTPS_HOST}" pattern="^(localhost)" negate="true" />
                    </conditions>
                    <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

 

posted @ 2018-03-03 14:45  zhaoxlchn  阅读(217)  评论(0编辑  收藏  举报