PHP移动重定向脚本(重定向到iPhone和/或Android OS)

时间:2015-03-05 06:56:20

标签: php

我的网站上有一个index.php页面,并在我的网站上的子域(m.mywebsite.com/index.php)上为Android / iPhone用户创建了移动版本。我想自动将尝试访问该网站的用户从iPhone / Android移动设备重定向到m.mywebsite.com。我在index.php页面的顶部添加了以下代码,但仍无效。

<?php
$agent = $_SERVER[‘HTTP_USER_AGENT’];
if (preg_match("/iphone/android/", $agent)) { 
header("location: http://m.mywebsite.com/");
}
?>

0 个答案:

没有答案