edie209 Posted March 8, 2013 Posted March 8, 2013 I think this is an easy one for someone who does this alot I have a spiceworks server SERVER-01 I access it using port 1234 We are using IE9 and I can't get the exception to work I have been trying if (isPlainHostName(host) || shExpMatch(host, "Server-01-01:1234")) return "DIRECT"; I have also tried if (dnsDomainIs(host, "Server-01*")) return "DIRECT"; The top one works with Firefox and Chrome but not IE9, any ideas
jinnantonnixx Posted March 8, 2013 Posted March 8, 2013 (edited) Try: if (shExpMatch(host,"Server-01-01:1234*")) { return "DIRECT"; } Edited March 8, 2013 by jinnantonnixx
edie209 Posted March 8, 2013 Author Posted March 8, 2013 Thanks for the reply. I have got it working and to be honest I have gone back to what I had originally. So I am completely confused as to why it wouldn't work then it did. But its working
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now