如何设置asp.net web.config重写http到https和www到非www

时间:2015-04-13 04:10:57

标签: asp.net url rewrite

我在重写部分非常注意,希望有人可以帮助我。 现在我正在使用这个

<rewrite>
  <rules>
    <rule name="Imported Rule 1" stopProcessing="true">
      <match url="^(.*)" ignoreCase="false" />
      <conditions logicalGrouping="MatchAll">
        <add input="{HTTPS}" negate="true" pattern="^on$" ignoreCase="false" />
      </conditions>
      <action type="Redirect" url="https://{SERVER_NAME}/{R:1}" redirectType="Found" />
    </rule>
  </rules>
</rewrite>

这只能将http更改为https,现在我希望它也可以支持将www更改为非www。我该怎么做呢?

1 个答案:

答案 0 :(得分:0)

为什么来自web.config?你应该从IIS中允许它 - 只需添加它。