类别:LINUX / GNU / 日期:2020-04-17 / 浏览:2296 / 评论:0
首先typecho在nginx下的默认伪静态规则如下:
if (!-e $request_filename) { rewrite ^(.*)$ /index.php$1 last; }
我们需要在后台将域名设置为https://www.onx8.com,然后在默认伪静态规则前加入下列的规则即可。
if ( $host != 'www.onx8.com' ) { rewrite ^/(.*)$ https://www.onx8.com/$1 permanent; }
修改完重启nginx生效,不管用户以后访问的是哪个网址,都会默认访问https。
版权声明 : 本文未使用任何知识共享协议授权,您可以任何形式自由转载或使用 / Article Is Not Licensed Under Any Creative Commons License, And You May Freely Reprint Or Use It In Any Form
发表评论 / 取消回复