스마트폰에서 www.xxx.com 하면 자동으로 모바일 주소 m.xxx.com 으로 이동 정보
기타 스마트폰에서 www.xxx.com 하면 자동으로 모바일 주소 m.xxx.com 으로 이동본문
좋은 팁인듯하여 퍼왔습니다.
출처 : okjsp (문제 되면 삭제하겠습니다~)
<script type="text/javascript">
if (navigator.userAgent.match(/iPad/) == null && navigator.userAgent.match(/Mobile|Windows CE|Windows Phone|Opera Mini|POLARIS/) != null)
location.href = "http://" + location.host + "/m" + location.pathname;
</script><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
출처 : okjsp (문제 되면 삭제하겠습니다~)
<script type="text/javascript">
if (navigator.userAgent.match(/iPad/) == null && navigator.userAgent.match(/Mobile|Windows CE|Windows Phone|Opera Mini|POLARIS/) != null)
location.href = "http://" + location.host + "/m" + location.pathname;
</script><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
추천
0
0
댓글 2개
안되는데요 .... 상세히 설명 좀 해주세요
첫번째 == null 이 !== 여야 아이패드도 접속되는거 아닌가요??...