ASP.Net / IIS使用将所有旧域页面重定向到新域主页

时间:2016-06-18 12:04:40

标签: asp.net redirect iis

我想301将所有旧域名重定向到新的域名主页。

e.g。

olddomain.com -> newdomain.com
olddomain.com/page -> newdomain.com

如果我在网络配置中设置:

<httpRedirect enabled="true" destination="http://www.newdomain.com/" httpResponseStatus="Permanent" />

olddomain.com/page重定向到newdomain.com/page。

1 个答案:

答案 0 :(得分:0)

我需要使用exactDestination="true"

相关问题