$imode = "mo/index.html";
$ezweb = "mo/index.html";
$jsky = "mo/index.html";
$pc = "pc/index.html";
$brwsr = $_SERVER{'HTTP_USER_AGENT'};
if (preg_match("/DoCoMo/",$brwsr)){
header("Location: $imode\n\n");
}
#EZwebの判別
else if (preg_match("/UP.Browser/",$brwsr)){
header("Location: $ezweb\n\n");
}
#J-Skyの判別
else if (preg_match("/J-PHONE/",$brwsr)){
header("Location: $jsky\n\n");
}
#その他(パソコン)
else {
header("Location: $pc\n\n");
}
exit;
?>