crx349 发表于 2022-9-29 00:31:35

Discuz!x3.4手机版链接&mobile=2后缀去除


/source/class/helper/helper_mobile.php
搜索:

$content = preg_replace_callback("/href="(\w+\.php)(.*?)"/", array(__CLASS__, 'mobileoutput_callback_mobilereplace_12'), $content);

注释掉

/source/function/function_core.php

搜索:
if(defined('IN_MOBILE') && strpos($string, 'mobile') === false && $islocation) {
                if (strpos($string, '?') === false) {
                        $string = $string.'?mobile='.IN_MOBILE;
                } else {
                        if(strpos($string, '#') === false) {
                              $string = $string.'&mobile='.IN_MOBILE;
                        } else {
                              $str_arr = explode('#', $string);
                              $str_arr = $str_arr.'&mobile='.IN_MOBILE;
                              $string = implode('#', $str_arr);
                        }
                }
      }

注释掉
页: [1]
查看完整版本: Discuz!x3.4手机版链接&mobile=2后缀去除