Discuz X3.4 开启全站HTTPS后,首页板块帖子链接还是HTTP解决办法

确保所有要改的地方都改https了

后台,全局,站点URL

后台,站长,ucenter设置

ucenter,应用,编辑

打开

source/function/function_core.php

搜索

$content = output_replace($content);

在这一行下面添加

$content = str_replace('http://www.loadream.com','https://www.你的网址.com',$content);

 

如果你使用了宝塔面板就方便多了

直接去网站管理SSL设置里面设置强制HTTPS就可以了

如果你是apcache的服务器

在.htaccess 里面添加,比忘了修改网址

<Files ~ "^.(htaccess|htpasswd)$">
deny from all
</Files>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(loadream\.com)(:80)? [NC]
RewriteRule ^(.*) https://www.loadream.com/$1 [R=301,L]
order deny,allow