我需要一个匹配除特定路径之外的所有https网址的正则表达式.
例如@H_403_2@
比赛@H_403_2@
https://www.domain.com/blog
https://www.domain.com@H_403_2@
不符合@H_403_2@
https://www.domain.com/forms/ *@H_403_2@
这是我到目前为止:@H_403_2@
<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>
但它不起作用@H_403_2@
重定向模块的工作方式,您应该只使用:
<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,如下所示:@H_403_2@
<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>