https는 보다 안전한 http 버전입니다. http를 통해 자동으로 https로 이동하면 사용자가 웹을 더 쉽게 사용할 수 있습니다.
점프를 완료하는 방법에는 여러 가지가 있습니다.
1. http 및 https 서버를 열고 http가 https
server { listen 80; listen [::]:80; return 301 https://$host$request_uri; } server { listen 443 ssl; listen [::]:443 ssl; ssl_certificate certificate_file_path; ssl_certificate_key certificate_key_file_path; ... }
로 점프하도록 합니다. 2. http 서버를 열지 말고 https 서버에서 직접 점프를 완료하세요. 다음 세 가지 방법을 사용할 수 있습니다
server { if ($server_port = 80 ) #if ($scheme = http ) #if ($ssl_protocol = "") { return 301 https://$host$request_uri; } listen 443 ssl; listen [::]:443 ssl; ssl_certificate certificate_file_path; ssl_certificate_key certificate_key_file_path; ... }
위 내용은 Nginx는 어떻게 자동으로 http에서 https로 이동합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!