如何在IIS7上使用.NET Framework 4.0启用HSTS

时间:2015-09-13 12:21:53

标签: iis-7 hsts

当我尝试在web.config文件中使用此配置时:

<httpRedirect enabled="true" destination="https://www.domain.co.uk/"
              httpResponseStatus="Permanent" />
<httpProtocol>
    <customHeaders>
        <remove name="X-Powered-By" />
    </customHeaders>
</httpProtocol>
<rewrite>
    <outboundRules>
        <rule name="Remove RESPONSE_Server">
            <match serverVariable="RESPONSE_Server" pattern=".+" />
            <action type="Rewrite" value="" />
        </rule>
    </outboundRules>
</rewrite>

浏览网络应用时出现此错误:

  

HTTP错误500.19 - 内部服务器错误请求的页面不能   访问,因为页面的相关配置数据是   无效。

我该如何解决这个问题?

0 个答案:

没有答案