需求:所有的http自动跳转到https。


方法一:nginx的rewrite

1、在nginx配置文件中增加这行。

server {  
    rewrite ^(.*)$  https://$host$1 permanent;     #加这个


2、重启nginx服务进行验证。