IIS (安装SSL证书后) 实现 HTTP 自动跳转到 HTTPS

Posted 大豆男生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IIS (安装SSL证书后) 实现 HTTP 自动跳转到 HTTPS相关的知识,希望对你有一定的参考价值。

IIS 里 安装好 SSL 证书后,如何实现 在浏览器里录入 http://www.xxx.com,会自动跳转到 https://www.xxx.com 呢。

首先,下载并安装 IIS 扩展: URL重写(URL Rewrite)扩展

URL重写扩展下载地址: https://www.iis.net/downloads/microsoft/url-rewrite

 

其次,修改 web.config 文件:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
          <rules>
            <rule name="HTTP to HTTPS redirect" stopProcessing="true">
              <match url="(.*)" />
                <conditions>
                  <add input="{HTTPS}" pattern="off" ignoreCase="true" />
                </conditions>
              <action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" />
            </rule>
          </rules>
        </rewrite>
    </system.webServer>
</configuration>

 

最后,重启网站 或重启 IIS。在浏览器里录入:http://www.xxx.com,会自动跳转到 https://www.xxx.com

 

以上是关于IIS (安装SSL证书后) 实现 HTTP 自动跳转到 HTTPS的主要内容,如果未能解决你的问题,请参考以下文章

如何在IIS7安装多域名SSL证书

IIS - 自动申请部署Let's Encrypt的免费SSL证书

网站绿锁里面显示的ssl证书 在iis服务器证书列表里面找不到,请问这个证书是在哪儿绑定的

如何在IIS7安装多域名SSL证书

在IIS下部署SSL证书实现HTTPS

iis装ssl证书串站点怎么解决