简体   繁体   中英

Nginx redirect url to secure domain

My webstie is hosted on aws EC2 instance and I have nginx 1.12.2 and Ec2 Operating system is centos, how do I redirect http://example.com and https://example.com to https://www.example.com .

Thanks

You will need 3 server sections (and I'm almost sure you forgot to handle http://www.example.com case)

server {
    listen 80;
    server_name example.com; 
    location / {
             return 301 https://www.example.com$request_uri;
           }
...

server {
    listen 443 ssl; 
    server_name example.com;
    ssl_certificate ...
    location / {
             return 301 https://www.example.com$request_uri;
           }
...

server {
    listen 443 ssl; 
    server_name www.example.com;
    ssl_certificate ...
    location / {
             #your configuration here
           }
...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM