Skip to content

Instantly share code, notes, and snippets.

View alexburma's full-sized avatar

Oleksandr alexburma

  • Kharkiv, Ukraine
View GitHub Profile
@seafarer
seafarer / nginx-rewrite.conf
Created October 3, 2016 17:14
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;