zl程序教程

您现在的位置是:首页 >  大数据

当前栏目

nginx 配置http重定向到https

2023-09-27 14:27:23 时间

在80端口的那个server下,添加如下:

server_name  www.youwebsite.com youwebsite.com;

rewrite ^(.*)$ https://$host$1 permanent;

 

然后访问 www.网站.com  网站.com

会自动跳转到https下