标签:http nginx 技术 tnginx 分享 str tar ubi 部署
现时越来越多的人开始为站点启用ssl证书了,部署了ssl后咱们都需要让http胁制跳转https,并决定站点独一性,这里绍介了几种方式。
提示:以军哥的lnmp一键部署包为例,Nginx
配置文件修正地址为/usr/fubitechal/nginx/conf/vhost/xx.com.conf
。
方式一:
if ($scheme = http ) {
return 301 https://$host$request_uri;
}
方式二:
server_name moerats.com ;
rewrite ^(.*) https://moerats.com$1 permanent;
方式三:
if ($server_port = 80 ) {
return 301 https://$host$request_uri;
}
方式四:
server_name moerats.com ;
return 301 https://$server_name$request_uri;
最后输入/etc/init.d/nginx restart
rebootNginx便可
希望以上的文章对各位有用,如果觉得不错给我点个喜欢吧!更多和Nginx环境强制http301跳转https的方法相关的问题或者对无限流量虚拟主机有疑惑也欢迎大家咨询。
标签:http nginx 技术 tnginx 分享 str tar ubi 部署
原文地址:https://www.cnblogs.com/fubitech/p/9797716.html