如果您输入了www.example.com
或http://example.com
,那么我的代码非常有效-它会重定向到https://example.com
。
现在,当我输入https://www.Example.com
时,我想重定向到https://Example.com
-但这不适用于此重定向系统。
<rewrite>
<rules>
<rule name="Redirect to non-www" stopProcessing="true">
<match url="(.*)" negate="false"></match>
<action type="Redirect" url="https://Example.com/{R:1}"></action>
<conditions>
<add input="{HTTP_HOST}" pattern="^Example\.com$" negate="true"></add>
</conditions>
</rule>
<rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" redirectType="Permanent" url="https://{HTTP_HOST}/{R:1}" />
</rule>
</rules>
</rewrite>