. Htaccess and php determine mobile phone/computer access to the mobile page-PHP source code

Source: Internet
Author: User
This article introduces two methods to identify the mobile users accessing your website, not PC users. Then, we can jump to the corresponding page based on the user type, next we will first use htaccess and then learn the php writing method. This article introduces two methods to identify the mobile users accessing your website, not PC users. Then, we can jump to the corresponding page based on the user type, next we will first use htaccess and then learn the php writing method.

Script ec (2); script

The home page is under the directory m of the website, and the backdoor parameters are the same as those on the pc page. Otherwise, you may need to modify the parameters.
When the mobile phone accesses the computer page, jump:

The Code is as follows:

RewriteEngine On
RewriteBase/m
RewriteCond % {HTTP_USER_AGENT} "android | blackberry | googlebot-mobile | iemobile | ipad | iphone | ipod | opera mobile | palmos | webos" [NC]
RewriteRule ^ (. *) $/m/$1 [L, R = 302] [L, R = 302]

?
Jump when the computer accesses the mobile phone:

The Code is as follows:


RewriteEngine On
RewriteCond % {HTTP_USER_AGENT }"! (Android | blackberry | googlebot-mobile | iemobile | ipad | iphone | ipod | opera mobile | palmos | webos) "[NC]
RewriteRule ^ (. *) $/$1 [L, R = 302]

In the end, because RewriteRule ^ (. *) $/m/$1 [L, R = 302] [L, R = 302]. If you want to access resources on a non-mobile page, use regular expressions to exclude specified files, such as RewriteRule ^ (. *? (?


If you cannot use the. htaccess file, we can directly Add the following code to php:

The Code is as follows:


// Determine whether the mobile phone belongs
Function is_mobile (){
$ User_agent = $ _ SERVER ['HTTP _ USER_AGENT '];
$ Mobile_agents = Array ("240x320", "acer", "ACO on", "acs-", "abacho", "ahong", "airness", "alcatel ", "amoi", "android", "anywhereyougo.com", "applewebkit/525", "applewebkit/532", "asus", "audio", "au-mic ", "avantogo", "becker", "benq", "bilbo", "bird", "blackberry", "blazer", "bleu", "cdm -", "compal", "coolpad", "danger", "dbtel", "dopod", "elaine", "eric", "etouch", "fly ", "fly _", "fly-", "go. web "," goodaccess "," gradiente "," grundig "," haier "," hedy "," hitachi "," htc "," huawei "," huchison ", "inno", "ipad", "ipaq", "ipod", "jbrowser", "kddi", "kgt", "kwc", "lenovo", "lg ", "lg2", "lg3", "lg4", "lg5", "lg7", "lg8", "lg9", "lg-", "lge -", "lge9", "longcos", "maemo", "mercator", "meridian", "micromax", "midp", "mini", "mitsu", "mmm ", "mmp", "mobi", "mot-", "moto", "nec-", "netfront", "newgen", "nexian", "nf-browser ", "nintendo", "nitro", "nokia", "nook", "novarra", "obigo", "palm", "panasonic", "pantech", "philips ", "phone", "pg-", "playstation", "pocket", "pt-", "qc-", "qtek", "rover", "sagem ", "sama", "samu", "sanyo", "samsung", "sch-", "scooter", "sec-", "sendo", "sgh -", "sharp", "siemens", "sie-", "softbank", "sony", "spice", "sprint", "spv", "symbian ", "tablet", "talkabout", "tcl-", "teleca", "telit", "tianyu", "tim-", "toshba", "tsm ", "up. browser "," utec "," utstar "," verykool "," virgin "," vk-"," voda "," voxtel "," vx "," wap ", "wellco", "wig browser", "wii", "windows ce", "wireless", "xda", "xde", "zte ");
$ Is_mobile = false;
Foreach ($ mobile_agents as $ device ){
If (stristr ($ user_agent, $ device )){
$ Is_mobile = true;
Break;
}
}
Return $ is_mobile;
}

Step 2: if statement

The Code is as follows:
If (is_mobile ()){
Just jump to the mobile phone page.
}
Else
{
To PC page
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.