马上注册,免费下载更多dz插件网资源。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
在网上找到手机版伪静态教程如下:
1、在移动版中,找到source\class\helper\helper_mobile.php中的函数 mobilereplace,修改成如下所示:
public static function mobilereplace($file, $replace) {
if(strpos($replace, 'mobile=') === false) {
if(strpos($replace, '?') === false) {
$replace = 'href="'.$file.$replace.'?mobile='.IN_MOBILE.'"';
} else {
$replace = 'href="'.$file.$replace.'&mobile='.IN_MOBILE.'"';
//$replace=str_replace('&mobile=2','',$replace);
$replace=mbrewriteoutput($replace);
}
return $replace;
} else {
return 'href="'.$file.$replace.'"';
}
}
2、然后在source/function/function_core.php中增加函数
function mbrewriteoutput($eurl) {
if(strstr($eurl,"forum.php?mod=forumdisplay&fid=")){
$eurl=str_replace('&mobile=2','',$eurl);
$fidarr=explode("fid=",$eurl);
$fid=$fidarr[1];
$fid=str_replace('"','',$fid);
$eurl=str_replace('forum.php?mod=forumdisplay&fid='.$fid,'forum-'.$fid.'-1.html',$eurl);
$eurl=str_replace('forum.php?mod=forumdisplay&fid='.$fid,'forum-'.$fid.'-1.html',$eurl);
return $eurl;
}elseif(strstr($eurl,"forum.php?mod=viewthread&tid=")){
$eurl=str_replace('&extra=page%3D1&mobile=2','',$eurl);
$tidarr=explode("tid=",$eurl);
$tid=$tidarr[1];
$tid=str_replace('"','',$tid);
$eurl=str_replace('forum.php?mod=viewthread&tid='.$tid,'thread-'.$tid.'-1-1.html',$eurl);
$eurl=str_replace('forum.php?mod=viewthread&tid='.$tid,'thread-'.$tid.'-1-1.html',$eurl);
return $eurl;
}elseif(strstr($eurl,"forum.php?forumlist=1&mobile=2")){
$eurl=str_replace('forum.php?forumlist=1&mobile=2','https://网站.com/',$eurl);
return $eurl;
}
return $eurl;
}
这样就可以实现手机伪静态
教程来源:365建站网
©DZ插件网所发布的一切资源仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。 网站部分内容来源于网络,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。如果您喜欢该程序,请支持正版软件,得到更好的正版服务。 您在本站任何的赞助购买、下载、查阅、回复等行为等均表示接受并同意签订《DZ插件网免责声明协议》。 如有侵权请邮件与我们联系处理: discuzaddons@vip.qq.com 并出示相关证明以便删除。敬请谅解!
|
|