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

前端之家收集整理的这篇文章主要介绍了正则表达式匹配除特定路径之外的所有https URL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要一个匹配除特定路径之外的所有https网址的正则表达式.

例如

比赛

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>

但它不起作用

重定向模块的工作方式,您应该只使用:
<rule name="Redirect from HTTPS to HTTP excluding /forms" stopProcessing="true">
    <match url="^forms/?" negate="true" />
    <conditions>
        <add input="{HTTPS}" pattern="^ON$" />
    </conditions>
    <action type="Redirect" url="http://{HTTP_HOST}/{R:0}" />
</rule>

仅当请求为HTTPS且路径未以表单/或表单开头时(使用negate =“true”选项),规则才会触发重定向到HTTP.
您还可以为主机添加条件以匹配www.example.com,如下所示:

<rule name="Redirect from HTTPS to HTTP excluding /forms" stopProcessing="true">
    <match url="^forms/?" negate="true" />
    <conditions>
        <add input="{HTTPS}" pattern="^ON$" />
        <add input="{HTTP_HOST}" pattern="^www.example.com$" />
    </conditions>
    <action type="Redirect" url="http://{HTTP_HOST}/{R:0}" />
</rule>
原文链接:https://www.f2er.com/regex/356877.html

猜你在找的正则表达式相关文章