我正在尝试将特定页面从旧域重定向到新域上的特定页面。URL 如下所示:
http://blog.mysite.com/post/2012/05/hungry.aspx
至
http://mynewsite.com/hungry.aspx
我查看了 Web.Config 文件以进行此更改,但是以下代码不起作用:
<location path="post/2012/05/hungry.aspx">
<system.webServer>
<httpRedirect enabled="true" destination="http://mynewsite.com/hungry.aspx" httpResponseStatus="Permanent" />
</system.webServer>
</location>
当我访问我的旧博客页面时,它不会重定向并保留在旧博客页面上。
我错过了什么吗?