我可以使用默认控制器索引功能中的以下代码在手机中获取移动网站。但我想在移动设备中再次浏览桌面版。由于上面的代码驻留在默认控制器索引功能中,因此无法在移动设备中浏览桌面网站,请帮忙
public function index() {
$this -> load -> library('Mobile_Detect');
$detect = new Mobile_Detect();
if ($detect->isMobile()) {
header("Location: ".$this->config->item('base_url')."/mobile"); exit;
}
}