帝国7.2cms一款很强大的cms 本站就是用的帝国cms 随着帝国cms7.2的多使用端的网站功能的上线。方便了很多。电脑端跳转手机网站的连接又是怎么样的呢?
先说下一些网上流传的一些代码
都是通过js获取访问者的平台 iPhone|iPod|Android|ios|iPad
这种来做跳转。那么问题就来了
如果我当前访问的是通过手机访问的电脑的一个页面 跳转到手机页面的也应该是当前的页面。
而不是首页。如果是首页的话那么客户体验度大大下降。
根据客户端跳转手机端
<script type="text/javascript">
if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i))) {
location.replace("http://wap.zmzz.com.cn/");
}
</script>
这个代码 是跳转的代码
首页的跳转是:
<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="http://m.zmzz.com.cn/";}}}
catch(err)
{
}</script>
<meta name="mobile-agent" content="format=xhtml;url=http://m.zmzz.com.cn/">
封面:http://web.sosouu.com/
<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="http://m.zmzz.com.cn/listinfo-[!--self.classid--]-0.html";}}}
catch(err)
{
}</script>
<meta name="mobile-agent" content="format=xhtml;url=http://m.zmzz.com.cn/listinfo-[!--self.classid--]-0.html">
列表:
<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="http://m.zmzz.com.cn/listinfo-[!--self.classid--]-0.html";}}}
catch(err)
{
}</script>
<meta name="mobile-agent" content="format=xhtml;url=http://m.zmzz.com.cn/listinfo-[!--self.classid--]-0.html">
内容
<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="http://m.zmzz.com.cn/showinfo-[!--classid--]-[!--id--]-0.html";}}}
catch(err)
{
}</script>
<meta name="mobile-agent" content="format=xhtml;url=http://m.zmzz.com.cn/showinfo-[!--classid--]-[!--id--]-0.html">
重点说明:代码是在帝国一BBS上转载来的
个人对代码坐下补充。
如果网站是动态建议把跳转连接换成动态的、栏目地址 ID什么的直接用帝国的标签即可
统一的路径一般都是
e/action/ListInfo/?classid=5 栏目ID=5
e/action/ShowInfo.php?classid=1&id=2 内容 栏目id内容ID
封面的就不说了
希望能帮助到大家!