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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] 开启https后 uc通信失败 的解决办法

[复制链接]
nimeilai 发表于 2018-3-18 18:02:03 | 显示全部楼层 |阅读模式


这个办法是我转载的

DISCUZ x3.2 开启https后ucenter通信失败解决方法(301重定向https后通信失败 按此办法处理)
uc目录model/misc.php


搜索
  1. $port = !empty($matches['port']) ? $matches['port'] : 80;
复制代码


68行处  后面加入以下代码


  1. if(substr($url,0,5)=='https'){
  2. $ch = curl_init($url);
  3. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  4. if($post){
  5. curl_setopt($ch, CURLOPT_POST, 1);
  6. curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
  7. }
  8. if($cookie){
  9. curl_setopt($ch, CURLOPT_COOKIE, $cookie);
  10. }
  11. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  12. return curl_exec($ch);
  13. }
复制代码






 楼主| nimeilai 发表于 2018-4-24 12:44:16 | 显示全部楼层
本帖最后由 nimeilai 于 2019-3-8 15:08 编辑

.htaccess 伪静态规则 里面添加下面的规则 即可实现跳转

# RewriteCond %{SERVER_PORT} !^443$
# RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R=301]




301跳转


  1. RewriteEngine On

  2. RewriteCond %{HTTP_HOST} !^discuz.dismall.com$ [NC]
  3. RewriteRule ^(.*)$ https://discuz.dismall.com/$1 [L,R=301]
复制代码
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-30 11:37 , Processed in 0.024503 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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