1
我們將ASP.NET應用程序託管爲Azure WebApp,並從GoDaddy配置域。我們爲非www域名購買了SSL。我們用下面的重定向規則:從「https:// www」重定向到「https://」
<rewrite>
<rules>
<rule name="Redirect to Example.com">
<match url="(.*)"/>
<conditions>
<add input="{HTTP_HOST}" pattern="^(?!^Example.com)" />
</conditions>
<action type="Redirect" url="https://Example.com/{R:1}"/>
</rule>
<rule name="Redirect to https">
<match url="(.*)"/>
<conditions>
<add input="{HTTPS}" pattern="Off"/>
<add input="{REQUEST_METHOD}" pattern="^get$|^head$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}"/>
</rule>
</rules>
</rewrite>
有沒有辦法來添加另一個規則重定向請求「https://www」爲「https://」?
感謝,
周杰倫