目前网址黑名单、网址白名单、浑天、自定义缓存策略、缓存黑名单、白名单以及智能限速策略已支持智能模糊匹配。
可填写的规则如下:
1、字符串:字母、数字, 特殊符号!@#$%^&*()-_=+{}[]<>,./?;:'”\|`~
2、可解析的正则表达式特殊符号:
特殊符号
|
意义
|
---|---|
* | 任意字符串 |
^ | 开始符,如不是放在开始位置,则当作字符串,不做正则解析。 |
$ | 结束符,如不放在结尾位置,则当作字符串,不做正则解析。 |
示例:
URL关键词
|
可匹配的URL
|
不匹配的URL
|
---|---|---|
test/ | /test/index.html /api/test/index.html |
api/tested/index.html |
/test*api | /test/b/api_index.html /root/test/a/api.html |
api/test/index.html |
^/test*api | /test/api_index.html /testapi/a.html |
root/test/a/api.html |
/test*api$ | /test/api /app/test/android/query_api |
root/test/a/api.html |
^/test*api$ | /test/api /test/android/query_api |
root/test/a/api.html |