【发布时间】:2015-08-26 18:24:15
【问题描述】:
我们需要使用 IIS 重写模块重定向下面的 URL。
http://www.old.com.au/kids to http://www.new.com.au/somepath/kids
有人可以帮帮我吗?
【问题讨论】:
标签: url-rewriting iis-7 url-rewrite-module
我们需要使用 IIS 重写模块重定向下面的 URL。
http://www.old.com.au/kids to http://www.new.com.au/somepath/kids
有人可以帮帮我吗?
【问题讨论】:
标签: url-rewriting iis-7 url-rewrite-module
为绑定到 www.old.com.au 的站点在 web config 的规则节点中添加这个
<rule name="Redirect kids to new site" >
<match url="^kids$"/> <!-- only redirect kids and not something/kids or kids/something -->
<action type="Redirect" url="http://www.new.com.au/somepath/kids" />
</rule>
【讨论】: