在静态页面上添加如下代码:
var thisURL = document.URL.toLowerCase();
//alert(thisURL);
var str1 = "http://域名.com";
if(thisURL.indexOf(str1)>-1){
var newURL = thisURL.replace(str1,"http://www.域名.com");
//alert(newURL);
window.location.href= newURL;
}
这样虽然能转向,不知道会不会影响收录权重?