Thursday, March 22, 2007

Another way to visited the banned blogspot

Fermi Zhang writes a nice post about How to Visit the Banned Blogspot,in the post he introduces a smarter way(compare with the less efficient one) to visit the banned blogspot.

Use the Notepad (or other text editor softwares) to write a file with the following codes:
function FindProxyForURL(url,host){
if(dnsDomainIs(host, ".blogspot.com")){
return "PROXY 72.14.219.190:80";
}
}
save it as proxy.pac and put it in the root directory of C:\ .Take Firefox for example,click Tools->Options->Advanced->Network->Settings...-> fill the codes below in the blank that under "Automatic proxy configuration URL":
file:///C:/proxy.pac
then press Reload on the right,press OK,and OK.And relaunch Firefox,done!

Update:codes for wordpress.com are

function FindProxyForURL(url,host){ if(dnsDomainIs(host, ".blogspot.com")){ return "PROXY 72.14.219.190:80"; } if(dnsDomainIs(host, ".wordpress.com")){ return "PROXY 72.232.101.41:80"; } }


Update2: For IE and LAN users(by uponsnow,I'm not using LAN so not check it yet)

Tools -> Internet Options -> Connections -> LAN settings -> Use automatic configuration script ->file:///C:\proxy.pac


Technorati Tags: , , ,