Skip to content

Instantly share code, notes, and snippets.

@blueprintmrk
Forked from seafarer/nginx-rewrite.conf
Created December 13, 2019 07:10
Show Gist options
  • Save blueprintmrk/d731084123554ccf6047ff627ce08c02 to your computer and use it in GitHub Desktop.
Save blueprintmrk/d731084123554ccf6047ff627ce08c02 to your computer and use it in GitHub Desktop.
301 redirect .html to non .html for nginx
rewrite ^(/.*)\.html(\?.*)?$ $1$2 permanent;
rewrite ^/(.*)/$ /$1 permanent;
try_files $uri/index.html $uri.html $uri/ $uri =404;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment