묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
모바일로 홈페이지 접속시 모바일 홈페이지 뜨게 하려면 어떻게하나요?
2013.04.05 16:00
모바일홈페이지와 PC홈페이지의 주소가 다른데요
모바일에서 PC홈페이지 주소를 쳐도 모바일 사이트로 연결되게 하려면
어떻게 해야하나요??
PC 웹사이트 초기 페이지(index) 상단 <head>와 </head> 사이에 아래와 같은 소스를 삽입 하시면 됩니다.
<script type="text/javascript">
function chkMobile(){
//모바일 페이지로 이동.
if(document.referrer.substring(0,22)!="모바일 홈페이지 주소"){
var uAgent = navigator.userAgent.toLowerCase();
var mobileKeyWords = new Array('iPhone', 'iPod', 'BlackBerry', 'Android', 'Windows CE', 'LG', 'MOT', 'SAMSUNG', 'SonyEricsson', 'Nokia', 'Opera mini', 'Webos', 'Mot', 'Opera Mobi', 'ieMobile', 'LG');
for (var word in mobileKeyWords){
if (navigator.userAgent.match(mobileKeyWords[word]) != null){
parent.window.location.href='모바일 홈페이지 주소';
break;
}
}
}
}
var main={
init: function(){
//Mobile Device Check
chkMobile();
}
}
main.init();
</script>