Skip to content

Instantly share code, notes, and snippets.

@bballentine
Created April 16, 2013 13:57
Show Gist options
  • Save bballentine/5396093 to your computer and use it in GitHub Desktop.
Save bballentine/5396093 to your computer and use it in GitHub Desktop.
Simple redirect for iOS and Android
<?php
if( strstr([‘HTTP_USER_AGENT’],’iPhone’) || strstr([‘HTTP_USER_AGENT’],’iPod’) || strstr([‘HTTP_USER_AGENT’],’Android’) ) {
header(‘Location: http://www.google.com');
exit();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment