Ipad/Iphone Redirect

DescriptionPHP snippet by - 09/30/10

Use this PHP snippet to redirect your Ipad and Iphone users to the apple compatible verison of the site.

Tags

if(strstr($_SERVER['HTTP_USER_AGENT'],'iPhone') || strstr($_SERVER['HTTP_USER_AGENT'],'iPod')) {
 header('Location: http://yoursite.com/iphone');
 exit();
}
  • Share
Submitted by: Adam J Nowak
http://hyperspatial.com

Comments and Feedback