是否?在 web.config 中以单声道设置工作?或者它是 IIS7 特有的?

发布于 2024-09-01 05:57:51 字数 652 浏览 4 评论 0原文

我们最近进行了一些内容重组,我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清泪尽 2024-09-08 05:57:51

是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文