Skip to content

Instantly share code, notes, and snippets.

@JKirchartz
Created May 11, 2011 19:13
Show Gist options
  • Save JKirchartz/967095 to your computer and use it in GitHub Desktop.
Save JKirchartz/967095 to your computer and use it in GitHub Desktop.
PHP Mobile Redirect
<?php
$agents = "/(sony|symbian|nokia|samsung|mobile|windows ce|epoc|opera mini|IEmobile|DoCoMo|nitro|j2me|midp-|cldc-|netfront|mot|up\.browser|up\.link|audiovox|blackberry|ericsson,|panasonic|philips|sanyo|sharp|sie-|ipad|ipod|iphone|portalmmm|blazer|avantgo|danger|palm|series60|palmsource|pocketpc|smartphone|rover|ipaq|au-mic,|alcatel|ericy|vodafone\/|wap1\.|wap2\.|mobile safari|android)/i";
$accepts = "/(text\/vnd\.wap\.wml|application\/vnd\.wap\.xhtml\+xml)/i";
if(preg_match($agents,$_SERVER['HTTP_USER_AGENT'])||preg_match($accepts,$_SERVER['HTTP_ACCEPT'])){
header("Location: mobile");
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment