Loading...
 
搜索
最新公告
Loading...
日 历
Loading...
最新日志
Loading...
最新评论
Loading...
最新留言
Loading...
统计信息
Loading...
友情链接




识别wap和web客户端浏览器
[ 2008-3-16 12:55:00 ]
在wap网站制作过程中,你想要知道客户端的浏览方式,通过判断转向web网站或者wap网站

asp代码
<%
'+--------------------------------------------------------+
'| 识别WAP或WEB客户端浏览器 (asp版本)
'| 作者: 石头 (stonemx@163.com | www.stonemx.com)                
'+--------------------------------------------------------+
Option Explicit
dim GuestUrl
if instr(Request.ServerVariables("http_accept"),"wap")>0  then
    GuestUrl="http://WAP网站地址"
else
    GuestUrl="http://WEB网站地址"
end if
Response.Redirect(GuestUrl)
%>

php代码

<?php
/*
'+--------------------------------------------------------+
'| 识别WAP或WEB客户端浏览器 (asp版本)
'| 作者: 石头 (stonemx@163.com | www.stonemx.com)                
'+--------------------------------------------------------+
*/
$GuestIE = $_SERVER['HTTP_ACCEPT'];
if(strpos($GuestIE,"wap")>0)
{
   header("location:http://WAP网站地址");
}
else
{
   header("location:http://WEB网站地址"); 
}
?>

发表评论:

    昵称:
    主页:
    标题:
    Loading...
COPYRIGHT © 2007 StoneMX.Com ALL RIGHTS RESERVED.