默认情况下如何在IIS 7服务器上使用SSL?

时间:2014-02-03 16:58:14

标签: windows iis windows-server-2008

我希望默认情况下在IIS 7服务器上使用SSL

我想在IIS 7服务器上默认使用SSL,怎么做?

1 个答案:

答案 0 :(得分:0)

在IIS 7中单击网站时,会出现SSL设置的图标。选中“需要SSL”框。

如果要自动将用户从非ssl重定向到ssl,则需要添加重定向规则。从此处下载并安装URL重写模块:http://www.iis.net/downloads/microsoft/url-rewrite,然后将此规则添加到您的web.config下

<configuration><system.webserver><rewrite><rules>

<rule name="HTTP to HTTPS" stopProcessing="true">
<match url="(.*)" />
<conditions>
    <add input="{HTTPS}" pattern="^OFF$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" />
</rule>