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



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

,例如

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

如果我在Web配置中设置:

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

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

我需要使用 exactDestination="true"

最新更新