文章来自http://wikipedia.cnblog.org/wiki/Wikipedia:如何访问维基百科
其中最有效的方法是:
在浏览器中配置代理服务器的方法有两种:手动设置代理,自动设置代理,手动设置代理是为该浏览器设置一个代理服务器,而自动设置代理是编写一个Javascript函数FindProxyForURL,并把这段代码写到一个以pac为后缀名的文件中,并在浏览器中选项的“自动设置代理URL”(Mozilla Firefox)或“使用自动配置脚本”(Microsoft Internet Explorer)设置该文件的URL(如“file:///D:/Program%20Files/Mozilla%20Firefox/wikiproxy.pac”)。
代理配置脚本的例子如下:
function FindProxyForURL(url, host)
{
url = url.toLowerCase ();
host = host.toLowerCase();
if (localHostOrDomainIs(host, "secure.wikimedia.org"))
return "DIRECT";
else if(dnsDomainIs(host,"wikipedia.org")
||dnsDomainIs(host,"wikisource.org")
||dnsDomainIs(host,"wikibooks.org")
||dnsDomainIs(host,"wikimedia.org")
||dnsDomainIs(host,"wiktionary.org"))
return "PROXY 145.97.39.140:80 ";
else return "DIRECT";
}

评论