デザイン 制作 DTP 広告 WEB制作 Design art works|self-hate.com

2010年4月 :

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

006CGI

August 9, 2007 8:11 PM

CGI

携帯振り分け02

.htaccessを使って振り分け←この方が軽いような気がしたので…

Options +FollowSymLinks
RewriteEngine On

RewriteCond %{HTTP_USER_AGENT} DoCoMo
RewriteRule ^$ http://www.xxxxxxxxxx.jp [R]

RewriteCond %{HTTP_USER_AGENT} J-PHONE
RewriteRule ^$ http://www.xxxxxxxxxx.jp [R]

RewriteCond %{HTTP_USER_AGENT} UP.Browser
RewriteRule ^$ http://www.xxxxxxxxxx.jp [R]

パーミッションは644で。

コメント (0)トラックバック (0)

June 26, 2007 11:21 AM

CGI

携帯各社振り分けについて

CGIで、

#! /usr/local/bin/perl
#
#
$agent = $ENV{'HTTP_USER_AGENT'};
if($agent =~ /DoCoMo/) #iモード
{ print "Location: http://www.xxxxxxxxxxx.html\n\n";}
elsif($agent =~ /UP\.Browser/) #au
{ print "Location: http://www. xxxxxxxxxxx.html\n\n";}
elsif($agent =~ /J-PHONE/) #J-Phone
{ print "Location: http://www. xxxxxxxxxxx.html\n\n";}
else #PC
{ print "Location: http://www. xxxxxxxxxxx html\n\n";}


これで振り分けて表示されます。

コメント (0)トラックバック (0)