Skip to content

Commit

Permalink
fix(nginx4spa): fix $uri/ order (#476)
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Bouquillon authored Oct 8, 2020
1 parent 5610891 commit 552abd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nginx4spa/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ http {

location / {
# this always fallback on /index.html, never 404
try_files $uri $uri/ $uri.html $uri/index.html /index.html;
try_files $uri $uri.html $uri/index.html $uri/ /index.html;
}

location /50x.html {
Expand Down

0 comments on commit 552abd5

Please sign in to comment.