<script type="text/javascript">
function isMobile(){
var UserAgent = navigator.userAgent;
if (UserAgent.match(/iPhone|iPod|Android|Windows CE|BlackBerry|Symbian|Windows Phone|webOS|Opera Mini|Opera Mobi|POLARIS|IEMobile|lgtelecom|nokia|SonyEricsson/i) != null || UserAgent.match(/LG|SAMSUNG|Samsung/) != null){
return true;
}else{
return false;
}
}
if(isMobile()){
location.href = "https://MOBILE_URL"; //모바일페이지
}else{
location.href = "https://PC_URL"; //PC페이지
}
//홈페이지 개발시 접속 경로를 알아 오려했을 때 모바일과의 분류 방법
//페이지 로드시에 함수가 실행되어서 로드됨과 동시에 모바일은 모바일 페이지로 처리
</script>