Method One: Use the JS in Baidu Siteapp to judge
<Scriptsrc= "Http://siteapp.baidu.com/static/webappservice/uaredirect.js"type= "Text/javascript"></Script><Scripttype= "Text/javascript">Uaredirect ("mobile URLs that need to be redirected")</Script>
Method Two:
<Scriptlanguage= "JavaScript"> functionmobile_device_detect (URL) {varThisos=Navigator.platform; varOS= NewArray ("IPhone", "IPod", "IPad", "Android", "Nokia", "SymbianOS", "Symbian", "Windows Phone", "Phone", "Linux armv71", "MAUI", "untrusted/1.0", "Windows CE", "BlackBerry", "Iemobile"); for (varI= 0; I<os.length; I++) { if(Thisos.match (Os[i])) {window.location=URL; } } //because quite a part of the cell phone system does not know the information, here is to do temporary special identification if(Navigator.platform.indexOf ('IPad') != -1) {window.location=URL; } //This is partly because the core of the Android phone is also Linux //but navigator.platform display information is different, so from the browser, that is, using navigator.appversion information to make judgments varCheck=navigator.appversion; if(Check.match (/Linux/i)) {//X11 is a platform for UC browsers and can be attached if other special browsers are available if(Check.match (/Mobile/i)||Check.match (/X11/i)) {window.location=URL; } } //class In_array functionArray.prototype.in_array= function(e) { for(i= 0; I< This. length; I++) { if ( This[i]==e)return true; } return false; }} mobile_device_detect ("mobile URLs that need to be redirected");</Script>
Using JS to achieve mobile phone access to the PC URL automatically jump to WAP site