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":then press Reload on the right,press OK,and OK.And relaunch Firefox,done!file:///C:/proxy.pac
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: block, blogspot, proxy, gfw