携帯サイトとWebサイトを同じURLで振り分ける方法です。 index.cgiを作って、perlで表示させる内容を変えています。 以下、index.cgiの内容です。 #!/usr/local/bin/perl $agent = $ENV{'HTTP_USER_AGENT'}; if ($agent =~ /(DoCoMo|J-PHONE|ASTEL|KDDI)/){ open(IN,"mobile.xhtml"); print "Content-type: application/xhtml+xml\n\n"; while (<IN>) { print; } close(IN); }else{ open(IN,"top.html"); print "Content-type: text/html\n\n"; while (<IN>) { print; } close(IN); } exi