说明:现在越来越多的人开始为网站启用ssl证书了,安装了ssl后我们都需要让http强制跳转https,并确定网站唯一性,这里介绍了几种方法。

方法

提示:以军哥的lnmp一键安装包为例,Nginx配置文件修改地址为/usr/local/nginx/conf/vhost/xx.com.conf

方法一:

if ($scheme = http ) {
return 301 https://$host$request_uri;
}

方法二:

server_name wxiou.cn ;
rewrite ^(.*) https://wxiou.cn$1 permanent;

方法三:

if ($server_port = 80 ) {
return 301 https://$host$request_uri;
}

方法四:

server_name wxiou.cn ;
return 301 https://$server_name$request_uri;

最后输入/etc/init.d/nginx restart重启Nginx即可

's

本文链接:https://www.wxiou.cn/archives/106/

最后修改:2016 年 01 月 18 日 07 : 26 PM

【腾讯云】星星海SA2云服务器618钜惠,1核2G 首年95元【点击查看】。


文章: 《Nginx环境强制http 301跳转https的方法》
联系方式:
文章链接:https://wxiou.cn/index.php/archives/736/
除特别注明外,文章均为Literature原创,转载时请注明本文出处及文章链接
Last modification:April 20th, 2021 at 01:05 pm
如果觉得我的文章对你有用,请随意赞赏