URL地址规则

1、填写规则

可以填写部分URL,也可以填写完整URL,不区分大小写。

默认采用部分匹配模式,无需添加*。系统不会将*作为通配符。

支持填写URL参数,参数变换位置也能识别。特别注意:系统会将“参数名+参数值”组合后进行部分匹配(例如:s=admin 被视为整体进行匹配)


2、示例说明

/admin/

表示包含/admin/的URL ,例如:

https://www.hws.com/admin/login.php


不匹配的URL:

https://www.hws.com/adminLogin/



/index.php?s=admin

表示包含/index.php?s=admin的URL ,例如:

https://www.hws.com/index.php?s=admin&m=login

https://www.hws.com/index.php?m=login&s=admin

https://www.hws.com/index.php?m=login&s=admin123

https://www.hws.com/index.php?m=login&as=admin123


不匹配的URL:

https://www.hws.com/index.php?m=login&sa=admin123

https://www.hws.com/login.php?m=login&s=admin



http://www.hws.com/admin

表示包含http://www.hws.com/admin的URL ,例如:

http://www.hws.com/admin/index.php


不匹配的URL:

https://www.hws.com/admin/index.php

http://hws.com/admin/index.php






上一篇:文件路径规则