IIS 8.5将非www重定向到www无效

时间:2016-11-08 17:06:26

标签: redirect iis-8.5

这是我的Web.Config的相关部分:

<rule name="Force WWW and SSL" enabled="true" stopProcessing="true">
  <match url="(.*)" />
  <conditions logicalGrouping="MatchAny">
      <add input="{HTTP_HOST}" pattern="^[^www]" />
      <add input="{HTTPS}" pattern="off" />
  </conditions>
  <action type="Redirect" url="https://www.zzz.com/{R:1}" appendQueryString="true" redirectType="Permanent" />
</rule>

它会将http重写为https,但不会根据我的cms需要添加www。我已经尝试了几种变体,看起来Win2012R2上的IIS 8.5似乎拒绝遵循www规则。有什么想法吗?

2 个答案:

答案 0 :(得分:0)

The problem comes from the pattern used to detected non-www.
You sould replace it like this :

<add input="{HTTP_HOST}" pattern="^zzz.com$" />

答案 1 :(得分:0)

遇到同样的问题后,我通过编辑网站的绑定并为zzz.com添加额外的绑定来修复它,仅用于http。