仅限文件夹/基础的 URL 重写

发布于 2024-10-15 15:44:58 字数 345 浏览 1 评论 0原文

        <rule name="updates" stopProcessing="true">
            <match url="updates/" ignoreCase="true" />
            <action type="Rewrite" url="update.cfm" />
        </rule>

这工作正常,除了更新下的任何页面(例如 updates/signin.cfm)也会重定向到 update.cfm。如何让它仅在 url 以 updates/ 结尾时应用

        <rule name="updates" stopProcessing="true">
            <match url="updates/" ignoreCase="true" />
            <action type="Rewrite" url="update.cfm" />
        </rule>

this works ok, except any pages under updates like updates/signin.cfm also redirects to update.cfm. How do I get it to apply only when the url ends with updates/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦在深巷 2024-10-22 15:44:58

URL 重写在其匹配表达式中使用 RegEx,因此在匹配结束时,请确保将其描述为“行尾”。我的正则表达式生锈了,但也许是

“updates/$”?另外,您可能必须在匹配中转义 / 。

http://www.regular-expressions.info/anchors.html

URL Rewrite uses RegEx in its matching expressions, so at the end of the match, make sure you delineate it to be 'the end of line'. My Regex is rusty, but maybe its

"updates/$" ? Also, you might have to escape the / in the match.

http://www.regular-expressions.info/anchors.html

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