【发布时间】:2012-05-11 02:41:01
【问题描述】:
我正在尝试用更具描述性的网址重定向一些不友好的网址。这些 url 以 .aspx?cid=3916 结尾,每个类别名称页面的最后一位数字不同。我希望它改为重定向到Category/CategoryName/3916。我在web.config 文件中试过这个:
<location path="Category.aspx?cid=3916">
<system.webServer>
<httpRedirect enabled="true" destination="http://www.site.com/Category/CategoryName/3916" httpResponseStatus="Permanent" />
</system.webServer>
但由于它不仅仅以扩展名结尾,因此它不起作用。有没有一种简单的方法可以让它工作?我正在使用 IIS 7.5。
【问题讨论】:
标签: asp.net web-config http-redirect