·设为首页收藏本站📧邮箱修改🎁免费下载专区📒收藏夹👽聊天室📱AI智能体
返回列表 发布新帖

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

401 2
发表于 2020-7-8 10:19:19 | 查看全部 阅读模式

马上注册,免费下载更多dz插件网资源。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
部分插件跳转时,没带上网站域名,然后浏览器就默认以当前url路径为前缀进行跳转,导致链接错误
打开:source\function\function_core.php
找到
  1. 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();        }}
复制代码
修改为
  1. 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();        }}
复制代码
我要说一句 收起回复
一花一世界,一叶一追寻。一曲一场叹,一生为一人。

评论2

TyCodingLv.8 发表于 2020-7-8 10:19:37 | 查看全部
如果你的插件没问题,只是帖子偶尔打开连接错误,可以考虑下边的方法

打开 source\module\forum\forum_viewthread.php
找到
  1. dheader("Location:forum.php?mod=viewthread&tid=$_G[tid]");
复制代码
改成
  1. dheader("Location:$_G[siteurl]forum.php?mod=viewthread&tid=$_G[tid]");
复制代码


这是discuz自身对“主题有楼层不准确时”的一个操作,跳转是为了处理后刷新页面,但跳转时没带上域名,导致跳转错误
我要说一句 收起回复
Discuz智能体Lv.8 发表于 2025-3-20 06:04:23 | 查看全部
你提到的这个问题是由于在伪静态或插件跳转时,URL没有带上完整的域名,导致浏览器基于当前路径进行跳转,从而出现错误的链接。你提供的解决方案是通过修改 `function_core.php` 文件中的 `dheader` 函数来确保跳转时带上完整的域名。

### 问题分析
在伪静态或插件跳转时,如果跳转的URL没有带上完整的域名(如 `http://` 或 `https://`),浏览器会默认以当前页面的路径为基础进行跳转。例如,如果当前页面是 `https://www.example.com/forum/`,而跳转的URL是 `/thread-123.html`,浏览器会将其解析为 `https://www.example.com/forum/thread-123.html`,这可能导致404错误或其他问题。

### 解决方案
你提供的代码修改方案是正确的,通过检查 `Location` 头是否包含完整的域名,如果没有,则自动补全域名。这样可以避免跳转时出现路径错误的问题。

### 代码解释
1. **全局变量 `$_G`**:`$_G` 是 Discuz! 的全局变量,通常包含站点的基本配置信息,如站点URL等。
2. **正则表达式检查**:通过 `preg_match` 检查 `Location` 头是否包含完整的域名(`http://` 或 `https://`)。
3. **补全域名**:如果 `Location` 头没有包含完整的域名,则通过 `preg_replace` 补全域名。

### 修改后的代码
  1. function dheader($string, $replace = true, $http_response_code = 0) {
  2.     global $_G;
  3.     $islocation = substr(strtolower(trim($string)), 0, 8) == 'location';
  4.     if($islocation){
  5.         if(!preg_match('/location:\s*https?:\/\//is', $string)){
  6.             $string = preg_replace("/location:\s*/is", 'Location: '.$_G['siteurl'], $string);
  7.         }
  8.     }
  9.     if(defined('IN_MOBILE') && strpos($string, 'mobile') === false && $islocation) {
  10.         if (strpos($string, '?') === false) {
  11.             $string = $string.'?mobile='.IN_MOBILE;
  12.         } else {
  13.             if(strpos($string, '#') === false) {
  14.                 $string = $string.'&mobile='.IN_MOBILE;
  15.             } else {
  16.                 $str_arr = explode('#', $string);
  17.                 $str_arr = $str_arr.'&mobile='.IN_MOBILE;
  18.                 $string = implode('#', $str_arr);
  19.             }
  20.         }
  21.     }
  22.     $string = str_replace(array("\r", "\n"), array('', ''), $string);
  23.     if(empty($http_response_code) || PHP_VERSION < '4.3' ) {
  24.         @header($string, $replace);
  25.     } else {
  26.         @header($string, $replace, $http_response_code);
  27.     }
  28.     if($islocation) {
  29.         exit();
  30.     }
  31. }
复制代码


### 注意事项
1. **备份文件**:在修改 `function_core.php` 文件之前,请务必备份原始文件,以防止修改错误导致站点无法正常运行。
2. **测试环境**:建议在测试环境中先进行修改和测试,确保没有问题后再应用到生产环境。
3. **插件兼容性**:某些插件可能会依赖原始的 `dheader` 函数,修改后可能会影响这些插件的正常运行。如果发现问题,可以尝试与插件开发者沟通,或者根据具体情况进行调整。

### 其他建议
如果你使用的是第三方插件导致的跳转问题,建议检查插件的代码,确保跳转时使用完整的URL。如果插件代码不可修改,可以考虑在插件跳转时通过钩子(hook)或事件(event)来修正URL。

希望这些信息对你有所帮助!如果还有其他问题,欢迎继续提问。
-- 本回答由 人工智能 AI智能体 生成,内容仅供参考,请仔细甄别。
我要说一句 收起回复

回复

 懒得打字嘛,点击右侧快捷回复【查看最新发布】   【应用商城享更多资源】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

图文热点
关闭

站长推荐上一条 /1 下一条

AI智能体
投诉/建议联系

discuzaddons@vip.qq.com

未经授权禁止转载,复制和建立镜像,
如有违反,按照公告处理!!!
  • 联系QQ客服
  • 添加微信客服

联系DZ插件网微信客服|最近更新|Archiver|手机版|小黑屋|DZ插件网! ( 鄂ICP备20010621号-1 )|网站地图 知道创宇云防御

您的IP:18.117.156.19,GMT+8, 2025-4-3 10:04 , Processed in 1.631337 second(s), 76 queries , Gzip On, Redis On.

Powered by Discuz! X5.0 Licensed

© 2001-2025 Discuz! Team.

关灯 在本版发帖
扫一扫添加微信客服
QQ客服返回顶部
快速回复 返回顶部 返回列表