2025年01月11日 建站教程
据不同设备类型跳转到对应的页面
if($is_mobile){
header('Location: /m/'); // 跳转到移动端首页地址
exit();
}
else{
header('Location: /'); // 跳转到PC端首页地址
exit();
}
本文链接:http://so.lmcjl.com/news/21138/