nginx配置首页默认跳转路径

https指定路径跳转

1
rewrite ^/index.html(.*)$ 指定的跳转路径 permanent;

http跳转到https

1
2
3
4
5
6
7
server {
listen 80;
server_name localhost;
rewrite ^(.*)$ https://$host$1 permanent;
location / {
index index.html index.htm;
}