阅读权限
20
粉丝
2
最后登录
2025-5-5
私信TA
|
当一个页别人手机打开访问跳到index1.php 电脑打开跳到index2.php.- <span style="font-size:18px;"><?php
- require_once 'function.php';
- if (isMobile()){
- //跳转到手机端
- header("Location: index1.php");
- }else{
- //跳转到PC端
- header("Location: index2.php");
- }
- ?></span>
- 手机打开跳到index1.php 电脑打开跳到index2.php.
复制代码
智能识别手机和电脑访问分别跳转代码
|
评分
-
查看全部评分
|