Example File

This page demonstrates the flexible URL handling of the tools service.

URL Flexibility: This page can be accessed via:

How it works

The nginx configuration uses try_files to automatically append the .html extension when needed:

location / {
try_files $uri $uri.html $uri/ =404;
}

This means you can create HTML files and access them with cleaner URLs without the extension!

← Back to home