IP加速器是稳定运营二十年的老牌游戏加速器,可以加速您的IP,降低网络延迟

当前位置: IP加速器 » 网通加速器
自动转向网通电信的代码
以下的代码保存为index.html就可以了,优点,基本可以实现电信,网通的转向。缺点:不是由ip判断的,不是那么准确,如果网通电信访问速度差不多,也许就错了,这点问题倒不大,如果网站访问哪个段都不快的话增加了网站访问的开销。因为中间转了好几次,访问速度比直接敲页面地址要慢很多。

<html>
<head>
<Script Langage=Javascript>
i=1
var autourl=new Array()
autourl[1]="abm..www.zhuhang.net.cn/"//修改为网通访问地址
autourl[2]="abm..zhuhang.net.cn/"//修改为电信访问地址
function auto(url)
{
if(i)
{
i=0;
top.location=url
}}
function run()
{
for(var i=1;
i<autourl.length;i++)
document.write("<img src="+autourl[i]+" width=1 height=1onerror=auto('"+autourl[i]+"')>")
}
run()
</script>
<meta http-equiv="Content-Type" content="text/html;charset=gb2312">
</body>
<style type="text/css">
<!--
.STYLE1 {
color: #FF0000;
font-size: 14px;
font-weight: bold;
}
-->
</style>
<table width="500" border="0" align="center">
<tr>
<td><p align="center"class="STYLE1">本网站采用双线路系统,正在为您选择最快服务器路线,请稍等...</p></td>
</tr>
</table>
</html>