Bypass the Upstream Proxy
Updated on Nov 6, 2025
To bypass the upstream proxy for all requests to a specific domain (for example, to emulate the IE Proxy bypass list), add a rule to Fiddler to the OnBeforeRequest function as follows:
c#
if (oSession.HostnameIs("www.example.com")){
oSession.bypassGateway = true;
}