2
cppgohan 2014-06-05 16:17:31 +08:00
我挺好奇这个网站的实现的, 镜像了许多站点.
v2ex也被他镜像(反代)了: http://v2ex.endlesscolleges.com/t/115631 不过v2ex有一个简单防止反代的函数, (但是如果这个endlesscolleges.com的子域名改成v2ex.com.endlesscolleges.com, 那么这个保护也会失效哈) function protectTraffic() { var l = top.location.href; if ((l.indexOf("v2ex.com") == -1) && (l.indexOf("localhost:") == -1) && (l.indexOf("192.168") == -1)) { location.href = 'http://www.v2ex.com/'; } } |