$brwsr = $_SERVER{'HTTP_USER_AGENT'}; /*---------- 各URL設定 ----------*/ //$PC_URL='index.html'; $MOBILE_URL='../keita.html'; //携帯端末の判別 if (preg_match("/(DoCoMo|UP.Browser|J-PHONE)/",$brwsr)){ header("Location: {$MOBILE_URL}\n\n"); exit; //その他はPCページへ飛ばす //}else{ //header("Location: {$PC_URL}\n\n"); //exit; } ?>
|