/*根据文件位置更改路径信息*/
require_once ‘Mobile_Detect.php’;
$detect = new Mobile_Detect;
if($detect->isMobile()) {
header(‘Location: http://m.uncletoo.com/’);
exit;
}
这是定向到移动网站,下面还有其他形式的重定向:
//所有平板设备
if( $detect->isTablet()) {
}
//是移动但非平板设备
if( $detect->isMobile() && !$detect->isTablet()) {
}
//IOS系统
if( $detect->isiOS()) {
}
//Android系统
if( $detect->isAndroidOS()) {
}
//WindowsPhone系统
if( $detect->isWindowsPhoneOS()) {
}
下一篇: 汽车保养简约专业主题
写的不错,感谢分享!
wordpress里面比较好用!