我有一个奇怪的请求,因为我正在尝试使用proxy.pac文件来使用代理服务器:
www.domain.com
www.domain.xx.xx
www.domain.com/?foo=1&bar=1 (where foo/bar can be any querystring)
但不是:
www.domain.com/folder/
subdom.domain.com
我尝试过以下操作,但在测试时似乎没有效果:
function FindProxyForURL(url, host) {
if (shExpMatch(url, "www.domain.*/?*")) return "PROXY 1.2.3.4:1234";
return "DIRECT";
}