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