typecho如何开启https访问

1:申请SSL证书

2:在typecho中设置
在根目录的config.inc.php文件中,插入一行:

define('__TYPECHO_SECURE__',true);

注意:Chrome内核的浏览器有不安全提示的时候,需要找到主题目录下面的comments.php文件
再将其中的$this->commentUrl(),替换为:echo str_replace(“http”,“https”,$this->commentUrl());

3:重定向`
将下方代码添加到Ningx配置文件里面去

server
{
        listen 80;
        server_name tianyaseo.com www.chendexin.com;
        rewrite ^(.*) https://www.chendexin.com$1 permanent;
}

完成上述操作后,全部保存一下,【当然之前每一步也是需要保存的】。打开自己的网站查看有没有开启。
如果没有,在根据实际情况检查或者在评论咨询我。

来源:http://www.xiaofm.cn/index.php/archives/32/

阅读量: | 柯西君_BingWong | 2019-03-16