スマートフォンからのアクセスを振り分けよう その2
前回ご紹介したスマートフォンの振り分けテクニックですが、「.htaccess」が設置不可のサーバーもたまにはあります。
そういった場合にはJavascriptを利用して振り分けてあげましょう。
(function(){
var ua = navigator.userAgent;
if (localStorage
&& !localStorage.getItem("sp_flag")
&& (ua.indexOf('iPhone') > 0 || ua.indexOf('iPod') > 0 || ua.indexOf('Android') > 0 )) {
location.href = 'スマホのディレクトリもしくはURL';
}
})();