<?php //http://detectmobilebrowsers.mobi/ require_once('mobile_device_detect.php'); $mobile = mobile_device_detect(); // redirect all mobiles to mobile site and all other browsers to desktop site if($mobile==true){ header('Location:http:// 모바일 접속경로/tmob.php'); }else{ header('Location:/pc 접속경로'); } exit; ?>