|
如子站点2 需要绑定域名为news.domain.com (注意news.domain.com使用时要更换为自己的域名),作下如操作:
一、把news.domain.com域名绑定到你的这个网站主机上。
二、在网站后台“设置”》站点管理里面把站点2的域名里面填写“http://news.domain.com/”
三、在修改route.php(在caches/configs目录下),在文件中'default'=>array('m'=>'content', 'c'=>'index', 'a'=>'init'),下增加一行,内容如下:
'news.domain.com'=>array('m'=>'content', 'c'=>'index', 'a'=>'init','data'=>array('GET'=>array('siteid'=>2))),
四、在站点1的首页模版或者header.html里面加入以下代码:
<script>
try {if( self.location == "http://wap.domain.com/" ) {
top.location.href = "http://wap.domain.com/index.php";
}
}
catch(e) {}
</script>
五、更新缓存,生成站点1的首页,大功告成!
|
|