我在我的网站上添加了一个 php 移动重定向:
<?php
require_once('mobile_device_detect.php');
$mobile = mobile_device_detect();
if($mobile==true){
header('Location:http://www.esielectrical.co.uk/mobile');
}else{
header('Location:http://www.esielectrical.co.uk/index.html');
}
exit;
?>
当我使用移动网站时,我正在尝试使用链接返回桌面版本。
这样做的最佳方法是什么?
有人可以帮我吗?
提前致谢!