eyoucms1.55版本訪問PC端自動跳轉手機網站的代碼
2022-11-29 加入收藏
由于此版本去除了模板里自動追加PC端和手機端自動跳轉的JS代碼,因此要做PC與手機跳轉的時候需要在HEAD里自行加入。
以下代碼只需在PC端模板里添加,移動端模板不需要添加。
如果是分離式模板,請在網站模板里的</head>之前加上以下代碼:
1 2 3 4 5 6 7 8 9 10 11 | <meta http-equiv= "mobile-agent" content= "format=xhtml;url={$eyou.field.pageurl_m}" > <script type= "text/javascript" > if (window.location.toString().indexOf( 'pref=padindex' ) != -1){} else { if (/applewebkit.*mobile/i.test(navigator.userAgent.toLowerCase()) || (/midp|symbianos|nokia|samsung|lg|nec|tcl|alcatel|bird|dbtel|dopod|philips|haier|lenovo|mot-|nokia|sonyericsson|sie-|amoi|zte/.test(navigator.userAgent.toLowerCase()))){ try { if (/android|windows phone|webos|iphone|ipod|blackberry/i.test(navigator.userAgent.toLowerCase())){window.location.href= "{$eyou.field.pageurl_m}" ;} else if (/ipad/i.test(navigator.userAgent.toLowerCase())){} else {}} catch (e){}}}</script> |
如果是響應式自適應模板,而且后臺開啟并配置了手機端域名,請在網站模板里的</head>之前加上以下代碼:
1 2 3 4 5 6 7 8 9 10 11 | <meta http-equiv= "mobile-agent" content= "format=xhtml;url={$eyou.field.pageurl_m}" > <script type= "text/javascript" > if (window.location.toString().indexOf( 'pref=padindex' ) != -1){} else { if (/applewebkit.*mobile/i.test(navigator.userAgent.toLowerCase()) || (/midp|symbianos|nokia|samsung|lg|nec|tcl|alcatel|bird|dbtel|dopod|philips|haier|lenovo|mot-|nokia|sonyericsson|sie-|amoi|zte/.test(navigator.userAgent.toLowerCase()))){ try { if (/android|windows phone|webos|iphone|ipod|blackberry/i.test(navigator.userAgent.toLowerCase())){ if (window.location.toString().indexOf( '{$eyou.field.mobile_domain}' ) == -1){window.location.href= "{$eyou.field.pageurl_m}" ;}} else if (/ipad/i.test(navigator.userAgent.toLowerCase())){} else {}} catch (e){}}}</script> |