gpt4 book ai didi

正则表达式匹配除特定路径之外的所有 https URL

转载 作者:行者123 更新时间:2023-12-04 10:04:27 24 4
gpt4 key购买 nike

我需要一个匹配除特定路径之外的所有 https URL 的正则表达式。

例如

匹配

https://www.domain.com/blog
https://www.domain.com

不符合

https://www.domain.com/forms/ *

这是我到目前为止所拥有的:

<rule name="Redirect from HTTPS to HTTP excluding /forms" enabled="true" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{URL}" pattern="^https://[^/]+(/(?!(forms/|forms$)).*)?$" />
</conditions>
<action type="Redirect" url="http://{HTTP_HOST}/{R:0}" redirectType="Permanent" />
</rule>

但它不起作用

最佳答案

这是否为您提供了您正在寻找的行为?
https?://[^/]+($|/(?!forms)/?.*$)
www.domain.com 之后位,它正在寻找字符串的结尾,或者寻找斜线,然后是 ISN'T forms .

关于正则表达式匹配除特定路径之外的所有 https URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18067201/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com