[b]方法一:[/b]
首先,申请并且配置好服务器ssl证书(阿里、腾讯都有免费的,同时都有教程)
配置完毕后需要配置以下几处
1.后台,全局,站点URL
2.后台,站长,ucenter设置
3.ucenter,应用,编辑
4.修改模版各处http://为https://
这里为模版文件较多的用户提供一个简单的批量的https://模版替换教程(开启伪静态的可用)
打开source/function/function_core.php搜索
[code]$content = output_replace($content);[/code][color=#000][font="]在下面加入[/font][/color][backcolor=rgb(247, 247, 247)][hide][/backcolor][color=#000000]
[/color][code]$content = str_replace('http://www.xxx.com','https://www.xxx.com',$content);[/code][color=#000][font="][color=#444444][backcolor=rgb(247, 247, 247)][font="][/hide][/font][/backcolor][/color]
如果你有多个二级域名,可以加入[/font][/color]
[code]$content = preg_replace('http://(.*?)xxx.com','https://\xxx.com',$content);[/code][color=#000][font="]https后论坛[/font][/color][color=rgb(68, 68, 68) !important][font="]模板[/font][color=#000][font="]错位加速代码就会恢复,如果没恢复清理缓存,更新后台――界面――风格――更新css模板缓存[/font][/color]
[b]方法二:[/b]
打开/source/class/discuz/discuz_application.php搜索
[code]$_G['isHTTPS'] = ($_SERVER['SERVER_PORT'] == 443 || $_SERVER['HTTPS']
[/code]在上方添加代码
[backcolor=rgb(247, 247, 247)][hide][/backcolor]
[code]$_SERVER['HTTPS']='on';[/code][backcolor=rgb(247, 247, 247)][/hide][/backcolor]
|