Asp.net mvc 301重定向

时间:2017-04-25 12:24:19

标签: asp.net model-view-controller

我有一个带ssl证书的网站。 域名为http://example.com 我有一个没有ssl证书的子域http://api.example.com

所以我想使用web.config MVC将http://example.com重定向到https://example.com

当我这样做时,子域名也会重定向301。

我想仅重定向我的主域名。

我的代码如下:

<rewrite>
      <rules>
        <rule name="Redirect-HTTP-HTTPS-IIS">
          <match url="(.*)" />
          <conditions>
            <add input="{HTTPS}" pattern="^OFF$" ignoreCase="true" />
          </conditions>
          <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
        </rule>
      </rules>
    </rewrite>

1 个答案:

答案 0 :(得分:0)

试试这个

<rule name="RedirectDomain" enabled="true" stopProcessing="true">
        <match url=".*" />
        <conditions logicalGrouping="MatchAny" trackAllCaptures="true">
            <add input="{HTTP_HOST}" pattern="^example.com$" />
        </conditions>
        <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
    </rule>