域名 http://myurl.org.cn要rewrite到http://myurl.org
myurl.org的首页添加下面的代码
   var currentURL = window.location.href;
   if(currentURL.indexOf(" http://myurl.org.cn")==0 || currentURL.indexOf(" http://www.myurl.")==0) {
     window.location.href = " http://myurl.org";
   }
 
就报jq的错误 消息: 'document.body' 为空或不是对象
行: 19
字符: 23004
代码: 0
URI: .....jquery-1.3.2.min.js直接访问myurl.org的首页是没问题的