Skip to content

Instantly share code, notes, and snippets.

@mhemrg
Created April 8, 2020 07:02
Show Gist options
  • Save mhemrg/443f403985e64920739b45d302302a87 to your computer and use it in GitHub Desktop.
Save mhemrg/443f403985e64920739b45d302302a87 to your computer and use it in GitHub Desktop.
Nginx hide .html file extension
location / {
index index.html index.htm;
try_files $uri.html $uri $uri/ =404;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment