i Phone 用振り分け
以下のように携帯キャリアごとに振り分け、3キャリア以外は
PCフォルダに振り分けるようにした場合ですが、PCフォルダの方で
i Phone 用に幅480pxで作成したページを配置すると
PCから http://mypage.net/ でアクセスしたユーザーにも
i Phone 用の幅480pxページを見せるようになってしまいますか?
i Phoneやスマートフォンの対処はどうされているんでしょうか?
<?php
$agent = $_SERVER['HTTP_USER_AGENT'];
if(preg_match("/^DoCoMo/i", $agent)){
header("Location: http://mypage.net/i/index.html");
exit;
}else if(preg_match("/^(J\-PHONE|Vodafone|MOT\-[CV]|SoftBank)/i", $agent)){
header("Location: http://mypage.net/s/index.html");
exit;
}else if(preg_match("/^KDDI\-/i", $agent) || preg_match("/UP\.Browser/i", $agent)){
header("Location: http://mypage.net/e/index.html");
exit;
}else{
header("Location: http://mypage.net/pc/index.html");
exit;
}
?>