How do I Redirect viewers to Mobile Version of Our Website? - TechRepublic
Question
April 9, 2012 at 08:45 AM
a.portman

How do I Redirect viewers to Mobile Version of Our Website?

by a.portman . Updated 14 years, 1 month ago

I am trying to redirect mobile browsers (iPhone,Android,Tablets) from our main site to the mobile version of our site.

After looking around I found the following code:

isMobile() && isset($_COOKIE[‘mobile’]))
{
$detect = “false”;
}
elseif ($detect->isMobile())
{
header(“Location:http://www.careersinstlouis.com”);
}

I ran the mobile_detect.php demo and it detects mobile browsers, but when I try it out, it never makes the switch.

Any suggestions?

This discussion is locked

All Comments