First we need get the real route address of blogspot.com.
open you command line,then type:tracert. you will get a message like follow:
C:\Documents and Settings\administrator>tracert blogspot.com
Tracing route to blogspot.com [72.14.207.191]
over a maximum of 30 hops:
10 93 ms 93 ms 94 ms 209.85.252.105
11 177 ms 177 ms 177 ms 209.85.248.131
12 203 ms 251 ms 203 ms 209.85.248.128
13 215 ms 215 ms 214 ms 209.85.243.116
14 229 ms 237 ms 230 ms 72.14.232.140
15 235 ms 236 ms 252 ms 209.85.250.110
16 236 ms 236 ms 236 ms 66.249.94.92
17 244 ms 244 ms 236 ms 66.249.94.118
18 236 ms 236 ms 236 ms eh-in-f191.google.com [72.14.207.191]
Trace complete.
remember this IP:72.14.207.191
Now,open textpad and type following code:
function FindProxyForURL(url,host){
if(dnsDomainIs(host, ".blogspot.com")){
return "PROXY 72.14.207.191:80";
}
return "DIRECT";
}
Save this file as proxy.pac.then open browser:
Firefox
- Click Tools -> Options -> Advanced -> Network -> Settings... (screenshot)
- Select the last option - "Automatic proxy configuration URL:" - and enter file:///C:/proxy.pac in the field just below it.
- Save the settings and close Firefox. Upon relaunching Firefox you should now be able to access http://xxxx.wordpress.com and http://xxxx.blogspot.com blogs.
Internet Explorer
- Click Tools -> Internet Options -> Connections -> LAN settings (screenshot)
- Check the "Use automatic configuration script" box and enter file://c:/proxy.pac in the Address field. (note: the address to the file is slightly different than the Firefox one - there is one less forward slash.)
- Save your settings, restart Internet Explorer and you should be able to access http://xxxx.wordpress.com and http://xxxx.blogspot.com blogs.
Mac Instructions
This hack also works on computers running the Mac OS. Simply follow the above PC instructions, changing the path to the proxy.pac file. For instance, if you have the pac file saved to your desktop the path would be file:///Users/yourname/Desktop/proxy.pac, changing "yourname" to whatever your username is.
Now,try this way,you'll see you can view google blogspot.good luck!
No comments:
Post a Comment