本帖最后由 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行。 源文件为:
- 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'] = '';
- }
复制代码
没修改前都没办法保存,修改过后也可以保存跳转链接了!
|