您的位置:首页 > 编程语言 > ASP

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

2016-05-26 14:04 686 查看
一个网站有多个域名,但是需要在访问其中某个域名之后跳转到另一域名。



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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: