Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ngtrian/95de4b2313fc8c76d85799d69c482e2a to your computer and use it in GitHub Desktop.
Save ngtrian/95de4b2313fc8c76d85799d69c482e2a to your computer and use it in GitHub Desktop.
remove html extension and trailing slash with nginx
server {
listen 80;
server_name test.com *.test.com;
rewrite ^(/.*)\.html(\?.*)?$ $1$2 permanent;
rewrite ^/(.*)/$ /$1 permanent;
root /path/to/project/root;
index index.html;
try_files $uri/index.html $uri.html $uri/ $uri =404;
error_page 404 /404.html;
error_page 500 502 503 504 /500.html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment