Skip to content

Instantly share code, notes, and snippets.

@henriqueboaventura
Created July 6, 2012 12:42
Show Gist options
  • Save henriqueboaventura/3059972 to your computer and use it in GitHub Desktop.
Save henriqueboaventura/3059972 to your computer and use it in GitHub Desktop.
PHP mobile redirect
if (preg_match('/(iphone|android|webos|blackberry|ipod|ipad|mobile)/i', strtolower($_SERVER['HTTP_USER_AGENT']))) {
header('Location: http://m.site.com/index.php?id='.$HTTP_GET_VARS["id"]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment