我正在尝试创建一个SINGLE重写规则(以避免多个301重定向),将所有请求转换为https,小写,www-preffixed。
因此,http://example.com/Page将是https://www.example.com/page - 所有这些都在一条规则中。
我该怎么做?
答案 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>
此规则将执行此操作: