ユーザーエージェントの振り分け
すみません、エージェント振り分けで以下のようにPHPファイルを作りました。
そして各ホルダ i,s にindex.htmlを配置したところ
Warning:Cannot modify header information headers already sent by (output started at /home/lolipop,jp-dp44253830/web/mobile/index.php:1) in/home/sites/lolipop.jp/users/lolipop.jp-dp44253830/web/mobile/index.php on line 4
index.php
<?php
$agent = $_SERVER['HTTP_USER_AGENT'];
if(preg_match("/^DoCoMo/i", $agent)){
header("Location: http://homepege.net/mobile/i/index.html");
exit;
}else if(preg_match("/^(J\-PHONE|Vodafone|MOT\-[CV]|SoftBank)/i", $agent)){
header("Location: http://homepage.net/mobile/s/index.html");
exit;
省略
}
?>
お手数ですが教えてください。
お礼
遅くなりすみません。上記ソフトをインストールして確認したところ改善されませんでした。おそらくサイト側の問題であろうと思います。しばらく様子をみてみます。 ありがとうございました。