是否?在 web.config 中以单声道设置工作?或者它是 IIS7 特有的?
我们最近进行了一些内容重组,我想在 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 标记在 Mono 中不受支持?
谢谢 :)
We had some content restructure recently and I'd like to put in some redirect rules into web.config so bookmarks to the old pages can get routed to their new locations/pages.
I tried using this approach:
<location path="~/product/productA.aspx">
<system.webServer>
<httpRedirect enabled="true" destination="~/product/category/productA.aspx" exactDestination="false" childOnly="true" httpResponseStatus="Permanent" />
</system.webServer>
</location>
But all I'm getting when I go to "http://www.oursite.com/product/productA.aspx" is our http 404 page.
Am I doing something wrong, or is the httpRedirect tag in web.config not supported in mono?
Thank you :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是 IIS 7 特定标记,因此您不应期望它适用于任何其他平台。没有 IIS 5/6,也没有 Mono。
is an IIS 7 specific tag, so you should not expect it work for any other platforms. No IIS 5/6, and no Mono.