我添加了一個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;
?>
當我使用的移動網站,我嘗試使用要回桌面版鏈接。
什麼是這樣做的最佳方式?
有人可以幫我嗎?
在此先感謝!