IIS上的URL重定向

时间:2012-09-26 01:33:57

标签: asp.net iis-7 url-rewriting

我在我的网站上添加了一个新网页。我需要重定向请求旧页面的用户,例如,如果用户请求页面

http://www.mysite.com/foo.aspx

user should be redirected to

http://www.mysite.com/bar/default.aspx

我如何使用IIS 7来实现这一目标?

2 个答案:

答案 0 :(得分:1)

在web.config中添加url映射

在我的网站中:

<urlMappings enabled="true"> 
<add url="~/RSS" mappedUrl="~/rss.axd"/> 
</urlMappings>

将请求http://mydomain/RSS重定向到http://mydomain/rss.axd

答案 1 :(得分:0)

您确定可以,这是微软有关如何设置的相关文档

http://technet.microsoft.com/en-us/library/cc732969(v=ws.10).aspx