去评论
dz插件网

解决 discuz x 3.4 https 门户跳转URL功能不跳转的问题方法

admin
2022/09/09 08:16:45
解决方法如下。

文件 \source\include\portalcp\portalcp_article.php 第73、77行。 源文件为:


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

修改为下面的

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