IIS URL重写中的小写WWW HTTP的单一规则

时间:2015-08-03 16:06:54

标签: asp.net iis url-rewriting

我正在尝试创建一个SINGLE重写规则(以避免多个301重定向),将所有请求转换为https,小写,www-preffixed。

因此,http://example.com/Page将是https://www.example.com/page - 所有这些都在一条规则中。

我该怎么做?

1 个答案:

答案 0 :(得分:2)

<rule name="All in one URL" stopProcessing="true">
    <match url=".*" />
    <conditions logicalGrouping="MatchAny">
        <add input="{HTTPS}" pattern="off" />
        <add input="{REQUEST_URI}" pattern="[A-Z]" ignoreCase="false" />
        <add input="{HTTP_HOST}" pattern="^www\." negate="true" />
     </conditions>
     <action type="Redirect" url="https://www.example.com:35077{ToLower:{URL}}" />
</rule>

此规则将执行此操作:

  • 小写网址
  • 强制使用HTTPS
  • 如果需要,请提供www