【发布时间】:2015-07-01 03:15:00
【问题描述】:
我有桌面视图 (test.com) 和移动视图 (m.test.com) 网站。 我正在通过 codeigniter 构造函数重定向到移动视图。
public function __construct(){
parent::__construct();
$this->load->library('user_agent');
if ($this->agent->is_browser())
{
if($this->agent->mobile()){
$url = $_SERVER['REQUEST_URI'];
header('Location: http://m.test.com'.$url);
}
}
}
它工作正常。 在我的站点主布局文件中还包含注释。
IN 桌面链接 rel="alternate" media="only screen and (max-width: 640px)" href="http://m.test.com/"
IN 移动链接 rel="canonical" href="http://www.test.com/"
但谷歌仍然显示我的网站不适合移动设备。
请帮帮我。
【问题讨论】:
标签: codeigniter url-redirection google-search-console googlebot