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;
    ...
}

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM