본문 바로가기
IT 인터넷

[PHP] 모바일 기기로 접근 시 자동 이동

by zzom~ 2024. 10. 3.
반응형

모바일 기기 확인 후 자동이동 스크립트

 

예제

<?
//위의 받은 파일을 인클루드 시킴
include('./mobile/mobile_device_detect.php');



//인클루드 시킨 파일 내의 함수를 실행시켜 모바일에서 접속한 것인지 PC에서 접속한 것인지를 판별
$mobile = mobile_device_detect();



if($mobile==true){
 //만약에 모바일에서 접속되었다면 모바일용 홈페이지로 넘어가게 한다.
 echo "<script language='JavaScript'> location.replace('http://m.홈페이지.com/'); </script>";
    exit;
}
//밑에서부터는 메인페이지
?>

 

mobile_device_detect.php 파일은 아래 첨부

mobile_device_detect.php
0.02MB

 

 

위 파일은 작동은 잘 되지만 좀 오래된 소스라 최신 버전은 아래 사이트에서 확인하여 사용하자.

위 소스는 참고/공부용으로 활용.

 

 

https://detectmobilebrowsers.mobi/

 

Mobile Detector

You are NOT using a mobile Your user agent is Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)

detectmobilebrowsers.mobi

깔끔한 소스에 압도적 감사!

반응형

'IT 인터넷' 카테고리의 다른 글

asus 공유기 정식펌웨어 온도확인 방법  (1) 2024.10.04
택배사별 배송조회 URL 모음  (0) 2024.10.03
windows 7,10,11 아이콘 깨짐 복구  (1) 2024.10.03
GIT 기본 사용방법  (0) 2024.10.02
[Mysql] repair & optimize  (1) 2024.10.02