我有以下代码:
include("Mobile_Detect.php");
$detect = new Mobile_Detect();
if ($detect->isMobile()) {
$parsedUrll = curPageURL();
$wwwtom = str_replace("www", "m", $parsedUrll);
header("location: $wwwtom");
exit;
}
如果他们使用移动设备,它将网站访问者重定向到移动网站。问题是代码一直在重定向,使移动用户无法访问计算机网站。我希望移动用户在点击按钮后可以选择返回正常网站。但由于我现在拥有的重定向代码,我不能真正做到这一点。我该如何修复代码,所以它只会每 24 小时重定向一次。欢迎提出建议,想法,解决方案。