Thứ Năm, 30 tháng 7, 2015

Chuyển tên miền khi sử dụng bằng các thiết bị di động


Viết bằng PHP

if(preg_match("/iPhone|iPad|Android|Windows Phone/is", $_SERVER['HTTP_USER_AGENT'])) {
     
 if($_SERVER['HTTP_HOST']!=="m.bige.vn"){            header("Loaction:http://m.bige.vn");       }}

Viết bằng JS

1.
<script>
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent)){       window.location ="http://m.bige.vn/"; }</script>

2.
var isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent);
if (isMobile) {
   jQuery('body').removeClass('ps-static');
   jQuery('body').addClass('ps-phone');
   jQuery('.page').click(function() {
   jQuery('body').removeClass('ind');
      swipe_animate_false();
   });
};

Không có nhận xét nào:

Đăng nhận xét