本帖最后由 不老松2008 于 2018-8-11 15:29 编辑
DZ版本:3.4 GBK
问题:访问手机页面,偶尔会出现:提示您访问的页面无手机页面,是否进一步访问电脑版? 问题出现几率:大概在30%!
请问各位大佬,有彻底解决的办法吗?非常感谢!!!
查看论坛的解决方法如下:
方法一无效;方法二强制刷新不是彻底解决;方法三:强制刷新不是彻底解决;
方法一:(对DZ3.4版本无效,搜索不到618行内容)
ource/function/function_core.php 找到 source/function/function_core.php第618行: 把 $mobiletplfile = ‘./template/default/’.$mobiletplfile;
改成 $mobiletplfile = ‘./template/default/’.$file.’.htm’;
方法二:(强制刷新即使0秒,也还可以瞬间看到 无手机页面 的界面跳转)
sourcelanguage
lang_message.php
查找:
‘not_in_mobile‘ => ‘您访问的页面无手机页面,是否进一步访问电脑版?‘,
更换为:
‘not_in_mobile‘ => ‘<style>body {background:#000000;height:1000px;width:auto;}</style><meta http-equiv="refresh" content="0;url=forum.php?mod=portal&mobile=yes">‘,
方法三:(强制刷新即使0秒,也还可以瞬间看到 无手机页面 的界面跳转)
找到 根目录\source\language\lang_message.php 文件 找到 第1056行 将 'not_in_mobile' => '您访问的页面无手机页面,是否进一步访问电脑版?', 修改为
'not_in_mobile' => '<meta http-equiv="refresh" content="0" />',
|