手机识别 php&asp

/*php index.php*/

<?php
if (strpos($_SERVER['HTTP_USER_AGENT'], 'Mobile') !== false){
header('Location: wap/');
}
else{
header('Location: cn/');
}
?>

 


/*asp index.asp*/

<%
if instr(request.servervariables("http_user_agent"),"Mobile")>0 then
response.Redirect "wap/"
else
response.Redirect "cn/"
end if
%>

/*conn.asp*/

if instr(request.servervariables("http_user_agent"),"Mobile")>0 then
response.Redirect "wap/"
end if

 

posted @ 2016-02-25 08:29  zu_a  阅读(91)  评论(0)    收藏  举报