« Greylisting | メイン | MovableTypeスパム対策 その2 »

携帯端末ページ振り分け

携帯とPCでHPを振り分けするには以下のスクリプトを使ってください。

以下を default.asp というファイル名で保存する。
※各HPのアドレスはご自分のHPに合わせて書き換えてください。

-----この下から-----
<%
'*** i-modeのページアドレス
goto_i = "http://r-ken.co.jp/i/"
'*** ezWebのページアドレス
goto_E = "http://r-ken.co.jp/i/"
'*** J-Skyのページアドレス
goto_J = "http://r-ken.co.jp/j/"
'*** パソコン、その他のページアドレス
goto_P = "http://r-ken.co.jp/index.asp"

aa = Request.ServerVariables("HTTP_USER_AGENT")
if instr(aa,"DoCoMo") <> 0 then response.redirect goto_i
if instr(aa,"UP.Browser") <> 0 then response.redirect goto_E
if instr(aa,"KDDI") <> 0 then response.redirect goto_E
if instr(aa,"J-PHONE") <> 0 then response.redirect goto_J
if instr(aa,"Vodafone") <> 0 then response.redirect goto_J
if instr(aa,"SoftBank") <> 0 then response.redirect goto_J
if instr(aa,"MOT") <> 0 then
response.redirect goto_J
else
response.redirect goto_P
end if
response.end
%>
-----この上まで-----

トラックバック

http://user.rocket3.net/mt-tbdummy0.cgi
このエントリーのトラックバックURL(上下のURLはスパム対策用のダミー):
http://user.rocket3.net/mt-tb02.cgi/2
http://user.rocket3.net/mt-tbdummy1.cgi

コメントを投稿

About

2007年02月08日 18:50に投稿されたエントリーのページです。

ひとつ前の投稿は「Greylisting」です。

次の投稿は「MovableTypeスパム対策 その2」です。

他にも多くのエントリーがあります。メインページアーカイブページも見てください。

Powered by
Movable Type 3.34