Skip to content

Instantly share code, notes, and snippets.

@giordhano
Created March 16, 2018 10:43
Show Gist options
  • Save giordhano/23e0b46cd635c2863e6f1785557f889d to your computer and use it in GitHub Desktop.
Save giordhano/23e0b46cd635c2863e6f1785557f889d to your computer and use it in GitHub Desktop.
if( !in_array('rest', explode('/', $_SERVER['REQUEST_URI']) )){ // Si no es un acceso al API
if(file_exists('../lib/Mobile-Detect/Mobile_Detect.php')){
require_once('../lib/Mobile-Detect/Mobile_Detect.php');
$detect = new Mobile_Detect;
if ( $detect->isMobile() ) {
header('location: http://vexservers.com/MFE/dist/#/home');
}
// Any tablet device.
if( $detect->isTablet() ){
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment