帝國CMS開啟多終端訪問時訪問電腦端以及手機端自動跳轉含動態頁和靜態頁代碼
[重要通告]如您遇疑難雜癥,本站支持知識付費業務,掃右邊二維碼加博主微信,可節省您寶貴時間哦!
最近折騰了一個帝國的站,真的是各種的折騰,倒騰的都累了,今天好不容易搞定了手機以及PC站,但是不咋跳轉,這就尷尬了,倒騰了好久才找到了解決辦法,具體操作如下;
Empire CMS 7.2版本引入了全面的多接入終端功能,使網站更方便地制作多個移動接入終端;版本7.5中的多訪問者升級:支持主端的后臺刷新以生成每個訪問端的靜態頁面,并且多訪問端在靜態模式下使用更方便。
首頁頁面頭部
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/">
列表頁
動態頁:https://m.zuowenla.net/e/action/ListInfo/?classid=[!--self.classid--]
靜態頁:https://m.zuowenla.net<?$r['classid']=$GLOBALS[navclassid];$classurl=sys_ReturnBqClassname($r,9);echo $classurl;?>
內容頁
動態頁:https://m.zuowenla.net/e/action/ListInfo/?classid=[!--self.classid--]
靜態頁:https://m.zuowenla.net<?$r['classid']=$GLOBALS[navclassid];$classurl=sys_ReturnBqClassname($r,9);echo $classurl;?>
分成動態與靜態頁面,可自行選擇更換m.zuowenla.net為自己的子域名哦。
PS:繼續延伸其他辦法
1、假設我們有帝國cms 電腦網站www.zuowenla.net,手機網站m.zuowenla.net
現在電腦端和手機端都是生成靜態網站,除了域名不同,靜態連接地址都是相同的,例如:
www.zuowenla.net/demo/1.html? ? 對應? ? m.zuowenla.net/demo/1.html
2、接下來要給電腦網站的首頁、列表頁、內容頁的模板添加跳轉代碼,方法如下:
js是瀏覽器跳轉,meta是告訴搜索引擎移動頁面的地址。
1)首頁模板需添加下面代碼
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)封面頁和列表頁添加下面代碼
<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)內容頁添加下面代碼
<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--]">
添加完上面代碼后,帝國cms的電腦網站的每個頁面都可以跳轉到手機靜態網站嘍。 就是這么的完美;(更新于2020年03月05日)
還有第三種方式,方式如下:
第一步:我們新建一個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 放到了根目錄下面 然后把下面的代碼復制到對應的模板里面 首頁跳轉
<script src='https://www.zuowenla.net/m.js' language='javascript'></script> <script type="text/javascript"> browserRedirect("https://m.zuowenla.net/"); </script>
封面頁和列表頁跳轉
<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>
內容頁跳轉
<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日
問題未解決?付費解決問題加Q或微信 2589053300 (即Q號又微信號)右上方掃一掃可加博主微信
所寫所說,是心之所感,思之所悟,行之所得;文當無敷衍,落筆求簡潔。 以所舍,求所獲;有所依,方所成!
賞
支付寶贊助
微信贊助
免責聲明,若由于商用引起版權糾紛,一切責任均由使用者承擔。
您必須遵守我們的協議,如您下載該資源,行為將被視為對《免責聲明》全部內容的認可->聯系老梁投訴資源 LaoLiang.Net部分資源來自互聯網收集,僅供用于學習和交流,請勿用于商業用途。如有侵權、不妥之處,請聯系站長并出示版權證明以便刪除。
敬請諒解! 侵權刪帖/違法舉報/投稿等事物聯系郵箱:service@laoliang.net
意在交流學習,歡迎贊賞評論,如有謬誤,請聯系指正;轉載請注明出處: » 帝國CMS開啟多終端訪問時訪問電腦端以及手機端自動跳轉含動態頁和靜態頁代碼