我们使用帝国cms做好了手机版和pc版,怎么让他们互联起来吧,比如我们用手机访问pc端的时候 ,怎么自动跳转到手机版呢,方法如下:第一步:我们新建一个js文件,命名你随便,路径也随便,js代码如下

functionbrowserRedirect(url){varsUserAgent=navigator.userAgent.toLowerCase();varbIsIphoneOs=sUserAgent.match(/iphoneos/i)=="iphoneos";varbIsMidp=sUserAgent.match(/midp/i)=="midp";varbIsUc7=sUserAgent.match(/rv:1.2.3.4/i)=="rv:1.2.3.4";varbIsUc=sUserAgent.match(/ucweb/i)=="ucweb";varbIsAndroid=sUserAgent.match(/android/i)=="android";varbIsCE=sUserAgent.match(/windowsce/i)=="windowsce";varbIsWM=sUserAgent.match(/windowsmobile/i)=="windowsmobile";if(bIsIphoneOs||bIsMidp||bIsUc7||bIsUc||bIsAndroid||bIsCE||bIsWM){window.location.replace(url);}}

我把js命名为 m.js 放到了根目录下面然后把下面的代码复制到对应的模板里面首页跳转

 <scriptsrc='http://www.daixiao360.cn/m.js'language='javascript'></script><scripttype="text/javascript">browserRedirect("http://m.daixiao360.cn/");</script>

封面页和列表页跳转

 <scriptsrc='http://www.daixiao360.cn/m.js'language='javascript'></script><scripttype="text/javascript">browserRedirect("http://m.daixiao360.cn/e/public/ClassUrl/?classid=[!--self.classid--]");</script>

内容页跳转

 <scriptsrc='http://www.daixiao360.cn/m.js'language='javascript'></script><scripttype="text/javascript">browserRedirect("http://m.daixiao360.cn[!--titleurl--]");</script>

注明:记得将以上代码中域名、路径替换成你的域名、文件路径。