一个网站有多个域名,但是需要在访问其中某个域名之后跳转到另一域名。 

asp.net 多个域名重定向,在web.Config中配置

 

Web.config 中配置

  </system.webServer> 
<!--重定向 域名 开始-->
    <rewrite>
      <rules>
        <rule name="a0001 301 Redirect" stopProcessing="true">
          <match url=".*" />
          <conditions>
            <add input="{HTTP_HOST}" pattern="^a0001.com$" />
          </conditions>
          <action type="Redirect" url="http://www.d0004.com/{R:0}"
          redirectType="Permanent" />
        </rule>

        <rule name="www jdqp 301 Redirect" stopProcessing="true">
          <match url=".*" />
          <conditions>
            <add input="{HTTP_HOST}" pattern="^www.a0001.com$" />
          </conditions>
          <action type="Redirect" url="http://www.d0004.com/{R:0}"
          redirectType="Permanent" />
        </rule>

        <rule name= "b0002 301 Redirect" stopProcessing="true">
          <match url=".*" />
          <conditions>
            <add input="{HTTP_HOST}" pattern="^b0002.com$" />
          </conditions>
          <action type="Redirect" url="http://www.d0004.com/{R:0}"
          redirectType="Permanent" />
        </rule>

        <rule name="www b0002 301 Redirect" stopProcessing="true">
          <match url=".*" />
          <conditions>
            <add input="{HTTP_HOST}" pattern="^www.b0002.com$" />
          </conditions>
          <action type="Redirect" url="http://www.d0004.com/{R:0}"
          redirectType="Permanent" />
        </rule>       
      </rules>
    </rewrite>
    <!--重定向 域名 结束-->
  </system.webServer>

 

相关文章:

  • 2021-08-06
  • 2022-12-23
  • 2022-12-23
  • 2021-08-27
  • 2021-11-20
  • 2021-11-20
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-07
  • 2022-12-23
  • 2021-08-16
  • 2021-11-08
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案