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>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM