This is a discussion on [squid-users] proxy.pac-Bug in IE? within the Squid Users forums, part of the Web Server and Related Forums category; Hi there, I have the following proxy.pac file: === function FindProxyForURL(url, host) { if (isPlainHostName(host) || dnsDomainIs(host, ".effenberger&...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi there,
I have the following proxy.pac file: === function FindProxyForURL(url, host) { if (isPlainHostName(host) || dnsDomainIs(host, ".effenberger")) return "DIRECT"; else return "PROXY nibbler.effenberger:3128"; } === What I want to achieve is that 1.) plain hostnames are accessed directly 2.) hostnames ending in .effenberger (my local domain) are accessed directly 3.) all other connections should be accessed via my proxy It works fine in Mozilla, Opera and Konqueror, but not in Internet Explorer. If I open up any domain with ".effenberger.", it does not work. Example: www.effenberger.de, www.effenberger.com, etc. Is this a bug in IE? Thanks for your help! Florian |