仅限文件夹/基础的 URL 重写
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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