공부하자/Javascript
모바일 리다이렉션 스크립트
YoBot
2016. 2. 3. 14:56
-모바일 리다이렉션 스크립트-
<?function getBrowser($agent) {
$browser = array(
"Android" => "/android/",
"Mobile Safari" => "/mobile\/[0-9a-z]* safari/");
$agent = strtolower($agent);
$b = '';
foreach($browser as $name=>$exp) {
if(preg_match($exp, $agent)) {
$b = $name;}
}
return $b;
}
$u_agent = $_SERVER['HTTP_USER_AGENT'];
$browser = getBrowser($u_agent);
if ($browser == 'Android' || $browser == 'Mobile Safari') {
?>
<script>location.href="http://yekoclinic.modoo.at";</script>
<?exit;}?>
상기 스크립트는 index.html , index.php, index.htm 같은 파일 즉 홈페이지 방문 파일 상단 [<html> </html>] 부분에 삽입해주시면
PC인지 모바일 기기인지 판단하여 PC로 접속하면 PC홈페이지 모바일 접속시 모바일 홈페이지가 나오도록 설정해 줍니다.
location.href="모바일 홈페이지 주소" 를 입력하여 사용해주시기 바랍니다.