| #297 | //正式站移动端和PC端跳转
|
| #298 | $pc_qianzhui = 'www.';
|
| #299 | $mobile_qianzhui = 'm.';
|
| #300 | $http_host = $_SERVER['HTTP_HOST'];
|
| #301 | //跳转判断只看UA(传0禁用m./wap.域名短路),否则桌面用户访问m.域名时is_mobile()被域名强制判为1,永远跳不回www.
|
| #302 | if(substr($http_host, 0, 4) == $pc_qianzhui && is_mobile(0)){
|
| #303 | http_location(str_replace_once($pc_qianzhui, $mobile_qianzhui, $this->_current_url));
|
| #304 | }elseif(substr($http_host, 0, 2) == $mobile_qianzhui && !is_mobile(0)){
|
| #305 | http_location(str_replace_once($mobile_qianzhui, $pc_qianzhui, $this->_current_url));
|
| #306 | }
|