bucuo123 发表于 2019-6-26 18:23:32

[discuz教程]解决 discuz x 3.4 https 门户跳转URL功能不跳转的问题方法免费下载

解决方法如下。
文件 \source\include\portalcp\portalcp_article.php 第73、77行。 源文件为:
if(substr($_GET['url',, 0] 7) !== 'http://') {
                $_GET['url', = '';
      }
      if(substr($_GET['fromurl',, 0] 7) !== 'http://' ) {
                $_GET['fromurl', = '';
      }修改为下面的
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', = '';
      }
页: [1]
查看完整版本: [discuz教程]解决 discuz x 3.4 https 门户跳转URL功能不跳转的问题方法免费下载