Fiddler is a good listening analysis tool, and it has a flash of inspiration, hijacking the js of some websites to achieve some special functions, so let's introduce this part of the automatic response. In the Rule Editor, the first line is to write the rules, and it is more appropriate to use regular matching, for example: To match: http://127.0.0.1/jquery.js?antcache=1460514990074 The rules are written as:
REGEX:http://127.0.0.1/jquery.js Can.
The second line is the response part, just write a file with the content you want to return, and then click the Save button at the back.
By the way, for the automatic response, check Enable rules for it to take effect.
Unmatched requests passthrough should also be checked, because non-matched requests should be released. Enabel Latency, if checked, you can customize the delay. If you do not select "Unmatched requests passthrough", the following error may be reported:
[Fiddler] The Fiddler AutoResponder is enabled, but this request did not match any of the listed rules. Because the "Unmatched requests passthrough" option on the AutoResponder tab is not enabled, this HTTP/404 response has been generated.
|