如果能访问这个页面的话:http://222.77.14.73/%2F%2Fwww.abc.cn%2Findex2-1.html
就能用JAVASCRIPT执行。如果访问不到这个页面的话,就要重写URL。

解决方案 »

  1.   

    那就获取上一页的来源,然后用JS去处理就行了..location.href
      

  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>