无限星辰工作室-客户无限互联网动力之源

标题: Discuz!x3.4手机版链接&mobile=2后缀去除 [打印本页]

作者: crx349    时间: 2022-9-29 00:31
标题: Discuz!x3.4手机版链接&mobile=2后缀去除

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

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


注释掉

/source/function/function_core.php

搜索:
  1. if(defined('IN_MOBILE') && strpos($string, 'mobile') === false && $islocation) {
  2.                 if (strpos($string, '?') === false) {
  3.                         $string = $string.'?mobile='.IN_MOBILE;
  4.                 } else {
  5.                         if(strpos($string, '#') === false) {
  6.                                 $string = $string.'&mobile='.IN_MOBILE;
  7.                         } else {
  8.                                 $str_arr = explode('#', $string);
  9.                                 $str_arr[0] = $str_arr[0].'&mobile='.IN_MOBILE;
  10.                                 $string = implode('#', $str_arr);
  11.                         }
  12.                 }
  13.         }
复制代码


注释掉




欢迎光临 无限星辰工作室-客户无限互联网动力之源 (https://www.xmspace.net/) Powered by Discuz! X3.4