码迷,mamicode.com
首页 > Web开发 > 详细

nginx中实现把所有http的请求都重定向到https

时间:2016-09-25 17:34:30      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

 在网站启用https之后,我们可能会有一个需求,就是将所有的http的请求自动地重定向到https,

  如果前端是使用的nginx来实现的https,我们可以这样配置nginx的301重定向:

server {  listen	  80;  server_name    xxx.com;  return	  301 https://$server_name$request_uri;
}

server {  listen	  443 ssl;  server_name    xxx.com.com;  [....]
}

nginx中实现把所有http的请求都重定向到https

标签:

原文地址:http://www.cnblogs.com/jiaoyiping/p/5906285.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!