The is_mobile function in the Code comes from the Internet and is well written. The portal file defines APP_PATH and APP_NAME by determining the terminal type to execute different groups. What I want to achieve is that both PC and Mobile use top-level domain names for access. Of course, if you want to implement access similar to wap.xxx.com on your mobile phone, this method cannot be done. This is a problem about deploying thinkphp multi-domain names. For details, see the tp manual.
It is very convenient to use thinkphp framework to quickly develop a small site, just like this site. Kaigen also made a mobile website, and entered the domain name www.icaigen.com on the mobile browser to check the effect.
The following describes how to implement Platform judgment in the index. php file on the front-end guide page of thinkphp, and load different groups (or projects ).
// Determine whether the mobile phone 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 ;} define ('Think _ path ','. /CORE/'); if (is_mobile () {// jump to the wap group define ('app _ name', 'wap'); define ('app _ path ', '. /Wap/');} else {define ('app _ name', 'home'); define ('app _ path ','. /Home/');} define ('app _ debug', false); require THINK_PATH. 'Core. php ';
The is_mobile function in the Code comes from the Internet and is well written. The portal file defines APP_PATH and APP_NAME by determining the terminal type to execute different groups.
What I want to achieve is that both PC and Mobile use top-level domain names for access. Of course, if you want to implement access similar to wap.xxx.com on your mobile phone, this method cannot be done. This is a problem about deploying thinkphp multi-domain names. For details, see the tp manual.
After defining the portal file, you can develop the code for the mobile website under the WAP group (or project. Because it is a mobile website, the resolution, image compression, and webpage size are all naked problems. I have only been in touch with the construction of mobile websites for a few days, so I will not be confused. It is clear that non-main features on PC websites can be cut off on mobile websites, such as popular blog articles, random articles, comment lists, and various pendants.