我有几 (4) 个链接需要在 .net 网站中重定向。例如,我需要http://www.example.com/products/productname(现在不再存在)重定向到http://www.example.com/products/productname.aspx。
如何在 web.config 中设置 301 重定向?
谢谢!
目前我有以下内容:
<location path="draft_root_beer">
<system.webServer>
<httpRedirect enabled="true" destination="~/products/draft_root_beer.aspx" httpResponseStatus="Permanent" />
</system.webServer>
</location>