web.config中的<httpredirect>是否在单声道设置中工作?或者它是IIS7特定的吗?</httpredirect>

时间:2010-05-11 02:18:54

标签: asp.net redirect mono web-config

我们最近进行了一些内容重组,并且我想在web.config中添加一些重定向规则,因此旧页面的书签可以路由到新的位置/页面。

我尝试使用这种方法:

<location path="~/product/productA.aspx">
    <system.webServer>
        <httpRedirect enabled="true" destination="~/product/category/productA.aspx" exactDestination="false" childOnly="true" httpResponseStatus="Permanent" />
    </system.webServer>
</location>

但是当我去“http://www.oursite.com/product/productA.aspx”时,我所得到的只是我们的http 404页面。

我做错了什么,或单声道不支持web.config中的httpRedirect标记?

谢谢:)

1 个答案:

答案 0 :(得分:0)

是一个IIS 7特定标记,因此您不应期望它适用于任何其他平台。没有IIS 5/6,也没有Mono。