使用web.config重写规则将流量重定向到www和https

时间:2014-02-10 04:17:46

标签: c# asp.net

以下是我设法挖掘的一些代码:

<rule name="Redirect domain.com to www" patternSyntax="ECMAScript" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^inboxlock.com$" />
</conditions>
<action type="Redirect" url="https://www.inboxlock.com/{R:0}" />
</rule>

但是,如果有人在www.inboxlock.com中输入,则不会重定向到https。我需要www.inboxlock.com和domain.com重定向到https://www.inboxlock.com。请帮忙。感谢。

1 个答案:

答案 0 :(得分:1)

<rule name="Enforce WWW" stopProcessing="true">
  <match url=".*" />
  <conditions>
    <add input="{CACHE_URL}" pattern="^(.+)://(?!www)(.*)" />
  </conditions>
  <action type="Redirect" url="{C:1}://www.{C:2}" redirectType="Permanent" />
</rule>

但我不能相信它。请参阅Mads Kristensen's blog post on URL rewrites

上的此代码及更多内容