リダイレクト処理に構文エラーが有ったため、index.php 15行目を修正。
//ブラウザ取得
$array_agent = array("MSIE","Chrome","Firefox");
$h_agent = $_SERVER['HTTP_USER_AGENT'];
$agent;
for($i=0; $i<2; $i++){
if(strlen(strpos($h_agent,$array_agent[$i]))>0){
$agent = $array_agent[$i];
break;
}
}
//Chromeはindex.html、それ以外をswf
- if ($agent == "Chrome") {
+ if (isset($agent) and $agent == "Chrome") {
header('Location: http://dona.dip.jp/trpg/index.html');
exit;
} else {
header('Location: http://dona.dip.jp/trpg/DodontoF.swf');
exit;
}