線路分流自動跳轉程式碼

weixin_34344677發表於2008-03-23
本人經過測試非常好用
程式碼一:
在要跳轉的頁面上寫上:
<script language="JavaScript">
var m=50000;
var n=Math.floor(Math.random()*m+1)
//alert(n);
document.write("<iframe   src=http://cnc.5nd.com/test.htm?"+n+"||"+location.search.replace(/\?/g,"")+" WIDTH=0 HEIGHT=0 MARGINHEIGHT=0 MARGINWIDTH=0 FRAMEBORDER=0 SCROLLING=NO></iframe>");
document.write("<iframe   src=http://dx.5nd.com/test.htm?"+n+"||"+location.search.replace(/\?/g,"")+" WIDTH=0 HEIGHT=0 MARGINHEIGHT=0 MARGINWIDTH=0 FRAMEBORDER=0 SCROLLING=NO></iframe>");
document.write("<iframe   src=http://www.5nd.com/test.htm?"+n+"||"+location.search.replace(/\?/g,"")+" WIDTH=0 HEIGHT=0 MARGINHEIGHT=0 MARGINWIDTH=0 FRAMEBORDER=0 SCROLLING=NO></iframe>");
</script>

--------------------------------------------------------------------------------------
test.htm頁面程式碼:注意每個伺服器站點都要放這個檔案:
<script language="JavaScript">
/*
這裡寫上一寫文字,不要太多150-200行就可以了,主要作用是,如果你的站點預設頁面為DEFAULT。HTM你把程式碼1放上去後他會檢測你所有伺服器的這個地址,尋找最快的頁面,哪個訪問速度快就進哪個站點,所以這裡要寫上文字,讓他來檢測速度,不要太少,這個是別人的東西和大家分享下!
*/

if (top.location !== self.location) {
top.location=self.location;
}
var url1,url2;
url1=location.search.replace(/\?/g,"")
url2=url1.split("||");
location.href="index.htm";
</script>
站點演示:
http://www.7di.net大家測試看看是不是跳轉到最快的伺服器上!

相關文章