企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# AutoResponder 允许拦截指定规则的请求 AutoResponder允许你拦截指定规则的求情,并返回本地资源或Fiddler资源,从而代替服务器响应。 看下图5步,我将“baidu”这个关键字与我电脑“f:\Users\YukiO\Pictures\boy.jpeg”这张图片绑定了,点击Save保存后勾选Enable rules,再访问baidu,就会被劫持。 这个玩意有很多匹配规则,如: 1. 字符串匹配(默认):只要包含指定字符串(不区分大小写),全部认为是匹配 <table style="width: 445px;" border="0" cellspacing="0" cellpadding="2"> <tbody> <tr> <td valign="top" width="362">字符串匹配(baidu)</td> <td valign="top" width="81">是否匹配</td> </tr> <tr> <td valign="top" width="362"><a href="http://www.baidu.com">http://www.baidu.com</a></td> <td valign="top" width="81">匹配</td> </tr> <tr> <td valign="top" width="362"><a href="http://pan.baidu.com">http://pan.baidu.com</a></td> <td valign="top" width="81">匹配</td> </tr> <tr> <td valign="top" width="362"><a href="http://tieba.baidu.com">http://tieba.baidu.com</a></td> <td valign="top" width="81">匹配</td> </tr> </tbody> </table> 2. 正则表达式匹配:以“regex:”开头,使用正则表达式来匹配,这个是区分大小写的 <table style="width: 448px;" border="0" cellspacing="0" cellpadding="2"> <tbody> <tr> <td valign="top" width="364">字符串匹配(regex:.+.(<span style="color: #4bacc6;">jpg</span> | <span style="color: #4bacc6;">gif</span> | <span style="color: #4bacc6;">bmp</span> ) $)</td> <td valign="top" width="82">是否匹配</td> </tr> <tr> <td valign="top" width="364"><a href="http://bbs.fishc.com/Path1/query=example.bmp">http://bbs.fishc.com/Path1/query=foo.<span style="color: #4bacc6;">bmp</span>&amp;bar</a></td> <td valign="top" width="82">不匹配</td> </tr> <tr> <td valign="top" width="364"><a href="http://bbs.fishc.com/Path1/query=example.gif">http://bbs.fishc.com/Path1/query=example.<span style="color: #4bacc6;">gif</span></a></td> <td valign="top" width="82">匹配</td> </tr> <tr> <td valign="top" width="364"><a href="http://bbs.fishc.com/Path1/query=example.bmp">http://bbs.fishc.com/Path1/query=example.<span style="color: #4bacc6;">bmp</span></a></td> <td valign="top" width="82">匹配</td> </tr> <tr> <td valign="top" width="364"><a href="http://bbs.fishc.com/Path1/query=example.Gif">http://bbs.fishc.com/Path1/query=example.<span style="color: #4bacc6;">Gif</span></a></td> <td valign="top" width="82">不匹配</td> </tr> </tbody> </table> ![](https://box.kancloud.cn/e338d6851ada5ac9ab285fec7c8d9e4c_896x617.png)