帝国cms创建的pc站跳转到手机站代码
帝国cms程序创建的网站,在PC端模板里,实现手机访问PC端自动适配跳转到对应的移动站,域名变成移动端域名,PC端和移动端共用一个数据库,内容不变。
示例网站:www.xxx.com 自动适配到 m.xxx.com
具体功能实现代码如下:
1、PC端首页模板添加跳转代码
<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.xxx.cn/”;}}}
catch(err)
{
}</script>
<meta name=”mobile-agent” content=”format=xhtml;url=http://m.xxx.cn/”>
2、PC端列表页或封面页模板添加跳转代码
<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.xxx.cn<?=sys_ReturnBqClassUrl($class_r[$GLOBALS[navclassid]]);?>”;}}}
catch(err)
{
}</script>
<meta name=”mobile-agent” content=”format=xhtml;url=http://m.xxx.cn<?=sys_ReturnBqClassUrl($class_r[$GLOBALS[navclassid]]);?>”>
3、PC端内容页模板添加跳转代码
<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.xxx.com[!–titleurl–]”;}}}
catch(err)
{
}</script>
<meta name=”mobile-agent” content=”format=xhtml;url=http://m.xxx.com[!–titleurl–]”>