-
-
Save ngtrian/95de4b2313fc8c76d85799d69c482e2a to your computer and use it in GitHub Desktop.
remove html extension and trailing slash with nginx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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