function FindProxyForUrl(url,host)
{
url = url.toLowerCase();
if(
shExpMatch(url, "iosapps.itunes.apple.com*")
)
{
return "DIRECT";
}
return "PROXY 192.168.3.62:8888"; ----this is fiddler address
}this is my script ,i use pac file to control traffic,and config in my ios device but fiddler not work.
then I to find out reason,i direct config ios device proxy with fiddler ip,this fiddler work well.
can someone tell me why ?