nginx设置http 301重定向到https

  今天有位客户问ytkah在nginx服务器如何设置http 301重定向到https,其实不难。他的服务器安装宝塔面板了,更好操作了。进入站点设置的配置文件,如下图所示,在第11行左右加入跳转代码  

    #301-START
    if ($host ~ '^abc.com'){
	  return 301 https://www.abc.com/$request_uri;
	}
	#301-END
	#301-START
  	if ( $scheme = http ){
          return 301 https://$server_name$request_uri;
          #或return 301 https://www.abc.com/$request_uri;
        } 
        #301-END

  

 

 另外一种方法是直接在nginx配置文件里改,一般是在会在 /usr/local/nginx/conf/nginx.conf

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

server {
    listen 443;
    ...
}

  

posted @ 2020-02-25 20:25  ytkah  阅读(3222)  评论(0编辑  收藏  举报
IPO发家故事 网址导航 gg N / G Sitemap

部分内容来源于网络,如有版权问题请联系删除