你在任何链接访问www.abc.cn/index.html 的时候
请在链接里加上http://
这样:
<a href='http://www.abc.cn/index.html'>链接</a>

解决方案 »

  1.   

    不是因为那个原因导致的链接丢失,而是好像是我这边的DNS服务器限制还是怎么回事,导致有时候连接会在前面加上http://222.77.14.73这个东西。
      

  2.   

    我自己解决了,用javascript客户端执行,呵呵,代码如下:
    <script   language="JavaScript">   
      <!--   
      var   str   =   location.href;   
      str   =   str.replace("/222.77.14.73/","");   
      str   =   str.replace("%2F%2F","/");   
      str   =   str.replace("%2F","/"); 
      alert('error one time');
      window.location.href=(str); 
      //-->   
      </script>