nginx配置首页默认跳转路径 SERVER Nginx 2016/09/09 https指定路径跳转 1rewrite ^/index.html(.*)$ 指定的跳转路径 permanent; http跳转到https 1234567server { listen 80; server_name localhost; rewrite ^(.*)$ https://$host$1 permanent; location / {index index.html index.htm;}