关于我们

质量为本、客户为根、勇于拼搏、务实创新

< 返回新闻公共列表

IIS7、IIS8自动跳转到HTTPS的伪静态规则表达

发布时间:2019-07-07 15:43:08

安装“URL REWRITE2 ” 伪静态模块

IIS7需要先确认是否安装 “URL REWRITE2 ” 伪静态模块 , 如果您已经安装可以跳过


下载地址 : http://www.iis.net/downloads/microsoft/url-rewrite


选择站点

URL 重写,如果安装的是英文版的 应该是【Url rewrite】


8.jpg


添加 “ 空白规则”

9.jpg


添加规则

名称 : HTTPS


匹配URL 模式: (.*)


添加条件: 条件: {HTTPS} 模式: off


操作类型选择:重定向


重定向URL:https://{HTTP_HOST}/{R:1}


10.jpg

然后保存即可


高级版

直接把伪静态添加到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>



/template/Home/D8Cloud/PC/Static