手机识别 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

浙公网安备 33010602011771号