1

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

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

user should be redirected to

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

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

4

2 回答 2

1

在 web.config 中添加 url 映射

在我的网站上:

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

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

于 2012-09-26T01:42:34.243 回答
0

你当然可以,这里是 microsoft 关于如何设置它的相关文档

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

于 2012-09-26T03:19:53.330 回答