帝國(guó)CMS開(kāi)啟多終端訪問(wèn)時(shí)訪問(wèn)電腦端以及手機(jī)端自動(dòng)跳轉(zhuǎn)含動(dòng)態(tài)頁(yè)和靜態(tài)頁(yè)代碼
[重要通告]如您遇疑難雜癥,本站支持知識(shí)付費(fèi)業(yè)務(wù),掃右邊二維碼加博主微信,可節(jié)省您寶貴時(shí)間哦!
最近折騰了一個(gè)帝國(guó)的站,真的是各種的折騰,倒騰的都累了,今天好不容易搞定了手機(jī)以及PC站,但是不咋跳轉(zhuǎn),這就尷尬了,倒騰了好久才找到了解決辦法,具體操作如下;
Empire CMS 7.2版本引入了全面的多接入終端功能,使網(wǎng)站更方便地制作多個(gè)移動(dòng)接入終端;版本7.5中的多訪問(wèn)者升級(jí):支持主端的后臺(tái)刷新以生成每個(gè)訪問(wèn)端的靜態(tài)頁(yè)面,并且多訪問(wèn)端在靜態(tài)模式下使用更方便。
首頁(yè)頁(yè)面頭部
JS代碼在body前面加上以下HTML源代碼
<script type="text/javascript">
try {var urlhash = window.location.hash;if (!urlhash.match("fromapp"))
{if ((navigator.userAgent.match(/(ipod|iphone|android|coolpad|mmp|smartphone|midp|wap|xoom|symbian|j2me|blackberry|wince)/i)))
{window.location="https://m.zuowenla.net/";}}}
catch(err)
{
}</script>
<meta name="mobile-agent" content="format=xhtml;url=https://m.zuowenla.net/">
列表頁(yè)
動(dòng)態(tài)頁(yè):https://m.zuowenla.net/e/action/ListInfo/?classid=[!--self.classid--]
靜態(tài)頁(yè):https://m.zuowenla.net<?$r['classid']=$GLOBALS[navclassid];$classurl=sys_ReturnBqClassname($r,9);echo $classurl;?>
內(nèi)容頁(yè)
動(dòng)態(tài)頁(yè):https://m.zuowenla.net/e/action/ListInfo/?classid=[!--self.classid--]
靜態(tài)頁(yè):https://m.zuowenla.net<?$r['classid']=$GLOBALS[navclassid];$classurl=sys_ReturnBqClassname($r,9);echo $classurl;?>
分成動(dòng)態(tài)與靜態(tài)頁(yè)面,可自行選擇更換m.zuowenla.net為自己的子域名哦。
PS:繼續(xù)延伸其他辦法
1、假設(shè)我們有帝國(guó)cms 電腦網(wǎng)站www.zuowenla.net,手機(jī)網(wǎng)站m.zuowenla.net
現(xiàn)在電腦端和手機(jī)端都是生成靜態(tài)網(wǎng)站,除了域名不同,靜態(tài)連接地址都是相同的,例如:
www.zuowenla.net/demo/1.html? ? 對(duì)應(yīng)? ? m.zuowenla.net/demo/1.html
2、接下來(lái)要給電腦網(wǎng)站的首頁(yè)、列表頁(yè)、內(nèi)容頁(yè)的模板添加跳轉(zhuǎn)代碼,方法如下:
js是瀏覽器跳轉(zhuǎn),meta是告訴搜索引擎移動(dòng)頁(yè)面的地址。
1)首頁(yè)模板需添加下面代碼
script type="text/javascript"> try {var urlhash = window.location.hash;if (!urlhash.match("fromapp")) {if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i))) {window.location="https://m.zuowenla.net/";}}} catch(err) { }</script> <meta name="mobile-agent" content="format=xhtml;url=https://m.zuowenla.net/">
2)封面頁(yè)和列表頁(yè)添加下面代碼
<script type="text/javascript"> try {var urlhash = window.location.hash;if (!urlhash.match("fromapp")) {if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i))) {window.location="https://m.zuowenla.net<?=sys_ReturnBqClassUrl($class_r[$GLOBALS[navclassid]]);?>";}}} catch(err) { }</script> <meta name="mobile-agent" content="format=xhtml;url=https://m.zuowenla.net<?=sys_ReturnBqClassUrl($class_r[$GLOBALS[navclassid]]);?>">
3)內(nèi)容頁(yè)添加下面代碼
<script type="text/javascript"> try {var urlhash = window.location.hash;if (!urlhash.match("fromapp")) {if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i))) {window.location="https://m.zuowenla.net[!--titleurl--]";}}} catch(err) { }</script> <meta name="mobile-agent" content="format=xhtml;url=https://m.zuowenla.net[!--titleurl--]">
添加完上面代碼后,帝國(guó)cms的電腦網(wǎng)站的每個(gè)頁(yè)面都可以跳轉(zhuǎn)到手機(jī)靜態(tài)網(wǎng)站嘍。 就是這么的完美;(更新于2020年03月05日)
還有第三種方式,方式如下:
第一步:我們新建一個(gè)js文件,命名你隨便,路徑也隨便,js代碼如下
function browserRedirect(url) { var sUserAgent = navigator.userAgent.toLowerCase(); var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os"; var bIsMidp = sUserAgent.match(/midp/i) == "midp"; var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4"; var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb"; var bIsAndroid = sUserAgent.match(/android/i) == "android"; var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce"; var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile"; if (bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM){ window.location.replace(url); } }
把js命名為 m.js 放到了根目錄下面 然后把下面的代碼復(fù)制到對(duì)應(yīng)的模板里面 首頁(yè)跳轉(zhuǎn)
<script src='https://www.zuowenla.net/m.js' language='javascript'></script> <script type="text/javascript"> browserRedirect("https://m.zuowenla.net/"); </script>
封面頁(yè)和列表頁(yè)跳轉(zhuǎn)
<script src='https://www.zuowenla.net/m.js' language='javascript'></script> <script type="text/javascript"> browserRedirect("https://m.zuowenla.net/e/public/ClassUrl/?classid=[!--self.classid--]"); </script>
內(nèi)容頁(yè)跳轉(zhuǎn)
<script src='https://www.zuowenla.net/m.js' language='javascript'></script> <script type="text/javascript"> browserRedirect("https://m.zuowenla.net[!--titleurl--]"); </script>
更新于2020年03月06日
問(wèn)題未解決?付費(fèi)解決問(wèn)題加Q或微信 2589053300 (即Q號(hào)又微信號(hào))右上方掃一掃可加博主微信
所寫所說(shuō),是心之所感,思之所悟,行之所得;文當(dāng)無(wú)敷衍,落筆求簡(jiǎn)潔。 以所舍,求所獲;有所依,方所成!