zoukankan      html  css  js  c++  java
  • 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>
  • 相关阅读:
    再叙存储设备
    分布式文件系统---测试
    分布式文件系统
    Solr 分布式(复制)配置--成功验证
    搜索服务之离线处理思路
    我为公司做的总体架构,欢迎提建议
    python的面向对象
    python异常处理
    迭代器和生成器
    python函数
  • 原文地址:https://www.cnblogs.com/foreverfendou/p/5530909.html
Copyright © 2011-2022 走看看