民审-M

SEO超级伪静态 目录化伪静态后,有时点击跳转到错误链接的解决办法

作者:民审-M   发布时间:2018-09-19 16:03   回复数:1   浏览数:48
民审-M
481民审-M金牌草根
2018-09-19 16:03:13
481 2018-09-19 16:03:13
适用于:
SEO超级伪静态 V3.6.9 高级版 DZ建站学习研究分享 · 插件(草根吧魔方一代解密学习研究)
https://www.cgzz8.cn/t-36538-1-1.html
(出处: 草根吧)


部分插件跳转时,没带上网站域名,然后浏览器就默认以当前url路径为前缀进行跳转,导致链接错误
打开:source\function\function_core.php
找到

function dheader($string, $replace = true, $http_response_code = 0) {
        $islocation = substr(strtolower(trim($string)), 0, 8) == 'location';
        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[0] = $str_arr[0].'&mobile='.IN_MOBILE;
                                $string = implode('#', $str_arr);
                        }
                }
        }
        $string = str_replace(array(\"\r\", \"\n\"), array('', ''), $string);
        if(empty($http_response_code) || PHP_VERSION < '4.3' ) {
                @header($string, $replace);
        } else {
                @header($string, $replace, $http_response_code);
        }
        if($islocation) {
                exit();
        }
}[font=Tahoma, &quot]修改为
function dheader($string, $replace = true, $http_response_code = 0) {
        global $_G;
        $islocation = substr(strtolower(trim($string)), 0, 8) == 'location';
        if($islocation){
                if(!preg_match('/location:\s*https?:\/\//is', $string)){
                        $string = preg_replace(\"/location:\s*/is\", 'Location: '.$_G['siteurl'], $string);
                }
        }
        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[0] = $str_arr[0].'&mobile='.IN_MOBILE;
                                $string = implode('#', $str_arr);
                        }
                }
        }
        $string = str_replace(array(\"\r\", \"\n\"), array('', ''), $string);
        if(empty($http_response_code) || PHP_VERSION < '4.3' ) {
                @header($string, $replace);
        } else {
                @header($string, $replace, $http_response_code);
        }
        if($islocation) {
                exit();
        }
}


haha_899
沙发haha_899步入草根 2025-11-10 12:30
支持楼主
游客
登录后才可以回帖,登录 或者 注册