- html
- 过滤规则
- 过滤规则
html
v1.8.0
及以后使用jsAppend代替
往content-type为html的响应内容后面追加数据,这个与resAppend的区别是resAppend不区分类型,对所有匹配的响应都会追加指定的数据,配置方式:
pattern html://filepath
filepath为Values里面的{key}或者本地文件(如:e:\test\xxx
、e:/test/xxx
、/User/username/test/xxx
等),pattern参见匹配模式,更多模式请参考配置方式。
例子:
www.ifeng.com html://{test.html}
test.html:
<iframe style="width: 100%; height: 600px;" src="http://www.aliexpress.com/"></iframe>
过滤规则
需要确保whistle是最新版本:更新whistle
如果要过滤指定请求或指定协议的规则匹配,可以用如下协议:
- ignore:忽略指定规则
- filter:过滤指定pattern,支持根据请求方法、请求头、请求客户端IP过滤
例子:
# 下面表示匹配pattern的同时不能为post请求且请求头里面的cookie字段必须包含test(忽略大小写)、url里面必须包含 cgi-bin 的请求
# 即:过滤掉匹配filter里面的请求
pattern operator1 operator2 excludeFilter://m:post includeFilter://h:cookie=test includeFilter:///cgi-bin/i
# 下面表示匹配pattern1、pattern2的请求方法为post、或请求头里面的cookie字段不能包含类似 `uin=123123` 且url里面必须包含 cgi-bin 的请求
operator pattern1 pattern2 includeFilter://m:post excludeFilter://h:cookie=/uin=o\d+/i excludeFilter:///cgi-bin/i
# 下面表示匹配pattern的请求忽略除了host以外的所有规则
pattern ignore://*|!host
# 下面表示匹配pattern的请求忽略file和host协议的规则
pattern ignore://file|host