域名重定向问题

来源:百度知道 编辑:UC知道 时间:2024/05/17 23:54:27
网站由于特殊原因,根目录装的phpcms,而现在想让home目录中的index.html为主页。因此要让myyan.com自动跳转到myyan.com/home,而根目录中的index.html通过转发的域名hp.myyan.com访问。
请问如何设置?用301重定向?

myyan.com---自动跳转到myyan.com/home
myyan.com/index.html----通过hp.myyan.com访问

myyan.com域名不能转发,因为与虚拟主机绑定,不可改动。

如果用301转发,请给出有效代码,一直没找到有效的。。
还有一点,就是myyan.com这个根目录下的文件还需要通过myyan.com/xxx(例子)来访问

<SCRIPT>try { if( self.location == "http://myyan.com/" ) {

top.location.href = "home/index.html";

}

else if( self.location == "http://hp.myyan.com/" ) {

top.location.href = "index.html";

}

else { } } catch(e) { }</SCRIPT>
====上面代码加在首页的head中