server { listen 443 ssl; server_name REPLACE_fqdn_ECALPER; ssl_certificate /etc/letsencrypt/live/REPLACE_fqdn_ECALPER/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/REPLACE_fqdn_ECALPER/privkey.pem; root /var/www/status.plomlompom.com/; location = / { return 301 /users/plomlompom.html; } # re-direct to .html endings location ~ ^/(notice|users)/([^\.]*)/?$ { rewrite ^/(notice|users)/([^\./]*)/?$ /$1/$2.html permanent; } }