Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] 【已经解决】请教点击门户分类下的文章链接直接跳转到论坛帖子的方法

[复制链接]
genggou 发表于 2019-1-3 12:25:32 | 显示全部楼层 |阅读模式
本帖最后由 genggou 于 2019-1-3 13:50 编辑

我看到https://www.maidama.com.cn/portal.php?mod=list&catid=1
门户有分类,分类下面有文章,点击门户文章的链接跳转到论坛的帖子了。

这种怎么操作。。 在线等,谢谢!


参考了:https://blog.csdn.net/idjoy/article/details/79917370

的确是https就不会跳转,x34的解决方法如下。 文件 \source\include\portalcp\portalcp_article.php 第73、77行。 源文件为:

  1. if(substr($_GET['url'], 0, 7) !== 'http://') {
  2.   $_GET['url'] = '';
  3. }

  4. if(substr($_GET['fromurl'], 0, 7) !== 'http://' ) {
  5.   $_GET['fromurl'] = '';
  6. }
复制代码


修改为:

  1. if(substr($_GET['url'], 0, 7) !== 'http://' && substr($_GET['url'], 0, 8) !== 'https://') {
  2.   $_GET['url'] = '';
  3. }

  4. if(substr($_GET['fromurl'], 0, 7) !== 'http://' && substr($_GET['url'], 0, 8) !== 'https://') {
  5.   $_GET['fromurl'] = '';
  6. }
复制代码



没修改前都没办法保存,修改过后也可以保存跳转链接了!

本帖子中包含更多资源

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

x
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-26 05:41 , Processed in 0.014509 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表