server { listen 80; server_name _; root /usr/share/nginx/html; index index.html; # Landing page location = / { try_files /index.html =404; } # /resume/1, /demo/assets/style.css — paths with trailing slash location ~ ^/([^/]+)/ { try_files $uri $uri/ /$1/index.html =404; } # /resume (no trailing slash) → 301 redirect to /resume/ location ~ ^/([^/]+)$ { try_files $uri $uri/ =404; } }