Skip to content

Instantly share code, notes, and snippets.

@isjwuk
Created May 18, 2023 14:22
Show Gist options
  • Save isjwuk/8480669a383f5ea894a00a2b677446a2 to your computer and use it in GitHub Desktop.
Save isjwuk/8480669a383f5ea894a00a2b677446a2 to your computer and use it in GitHub Desktop.
Nginx Web Server config to redirect subpage to subpage.html
#Redirect example.com/subpage1 to example.com/subpage1.html, example.com/subpage2 to example.com/subpage2.html
#And so on
#Snippet from the nginx config file
#Tested in an Azure PHP WebApp
#Redirect /page to /page.html
location / {
try_files $uri $uri/index.html $uri/index.php $uri.html $uri/ ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment