IIS URL重写规则不起作用

时间:2015-01-31 22:21:25

标签: asp.net-mvc iis url-rewriting

我正在尝试重定向所有流量:

https://funfinda.com& http://funfinda.com& http://www.funfinda.com&

https://www.funfinda.com

我已尝试添加此网址重写规则,我也尝试使用“重定向”而不是“重写”,但它无效...

<rule name="Funfinda redirects" stopProcessing="true">
  <match url="*" />
  <conditions logicalGrouping="MatchAny">
    <add input="{HTTP_HOST}" pattern="^funfinda.com$" />
  </conditions>
  <action type="Rewrite" url="https://www.funfinda.com/{R:0}" />
</rule>

0 个答案:

没有答案