• 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>
  • 相关阅读:
    OpenShift
    ant exec
    深入了解Ant构建工具 命令
    防止sql注入和跨站脚本攻击,跨站请求伪造以及一句话木马的学习记录
    Web攻防之XSS,CSRF,SQL注入(转)
    sublime text常用快捷键(转)
    fiddler使用心得记录
    python+tesseract验证码识别的一点小心得
    window脚本命令学习(转)
    python发送邮件(转)
  • 原文地址:https://www.cnblogs.com/foreverfendou/p/5530909.html
Copyright © 2020-2023  润新知