<?php

#------------------------------------------------------
#キャリア判別

$mobile = 0;

if(isset($_SERVER['HTTP_USER_AGENT'])){
	$agent = trim($_SERVER['HTTP_USER_AGENT']);
}else{
	$agent = "";
}

if(preg_match("/DoCoMo/i",$agent)){
	$mobile++;
}elseif(preg_match("/J-PHONE/i",$agent)){
	$mobile++;
}elseif(preg_match("/UP\.Browser/i",$agent)){
	$mobile++;
}

#------------------------------------------------------
#ジャンプ先は同一サーバー内でもhttpから表記

if($mobile){
	header("Location: https://www.ino-net.com/bike/mobile/");
	exit();
}else{
	header("Location: https://www.ino-net.com/cgi-bin/bike/bbs/bbs45.cgi");
	exit();
}

#------------------------------------------------------

?>
