-모바일 리다이렉션 스크립트-
<?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="모바일 홈페이지 주소" 를 입력하여 사용해주시기 바랍니다.
'공부하자 > Javascript' 카테고리의 다른 글
홈페이지 불펌방지 소스 (0) | 2018.11.13 |
---|---|
자바스크립의 alert 대화상자/메시지박스 줄바꾸는 방법 (0) | 2017.03.12 |
JavaScript 자바스크립트를 이용하여 브라우저 강제로 종료하는 방법 (0) | 2017.03.10 |
일반홈페이지 리다이렉션 소스 (0) | 2016.11.27 |
모바일에서 전화번호로 설정하는 스크립트 (0) | 2016.02.03 |