时间:2023-02-09 04:06:01 | 来源:建站知识
时间:2023-02-09 04:06:01 来源:建站知识
server { listen 80; server_name localhost; #使用原域名 rewrite ^(.*)$ https://$host$1 permanent; #或者直接定义域名 rewrite ^(.*)$ https://xxx.com permanent; location / { index index.php index.html index.htm; }}
server { listen 80; server_name localhost; #使用原域名 return 301 https://$server_name$request_uri; #或者直接定义域名 return 301 https://xxx.com; location / { index index.php index.html index.htm; }}
关键词: