Trailing Slashes on URLs: Contentious or Settled?
https:/
I have mixed feelings about URLs without an extension (.html
for example) or a trailing slash. It certainly comes mostly from 25 years of unexpected behaviors with HTTP servers and other Web plumbering.
When there's none of these at the end of the URL, I don't know what it "is", it's disturbing.
I like how URL termination helps infer what the page type is:
- There's a trailing slash? It's a folder, there are other contents "inside"/"below" it.
- There's an
.html
extension? It's a page, a "leaf" in the site content "tree".
I disagree with Zach on the "Cool URIs Don’t Change" impact on extensions in URLs. Do we really think Web pages will use anything else than HTML in the future? I would agree for other extensions though, even if a good redictions strategy can help.
But on the server side, if I have an article with some illustrations or other content attached (CSS for this example), I like to keep these in a single place, which is naturaly a folder, and URLs to load/show these other contents should be relative to the main content one. I wan't to avoid the "Asset References" problem Zach lists in his article. Which leads to URLs with trailing slashes as the best URLs for contents, instead of an .html
extension, as my guts would promote. Struggling with myself…
So be it, content URLs as folders, and so trailing slashes everywhere… 🤷♂️
I like then that an index.html
file shows the content of a folder by convention[1].
Now that this is settled, it's important to know how our toolschain helps or prevent it, as Zach shows with the help of Sebastien Lorber's huge work on the topic.
From the tools I use nowadays for multiple sites:
- Eleventy helps, as it is the default behavior[3], and you can define your own permalinks behavior if you want. 👍
- Netlify has an optional "Pretty URLs" (which means "without extension") feature in post build asset optimizations, I really thank them for making it optional, even if it's unfortunately active by default. 👍
- Cloudflare on the other hand does it by default without any way to disable it. I don't like that, even if I currently use trailing slashes anyway. 😡
Remember that you should never let the web server list the actual files present in the folder on the file system![2] ↩︎
By the way, make sure you read, understand and apply as much as possible Opquast's Web Quality Assurance Checklist. ↩︎
It comes though with an issue: if you create source files
/folder.md
andfolder/index.md
, they get the same permalink, which should be impossible. That's something you can change with a single option in Pack11ty, my Eleventy project template. ↩︎
-
older link:
How to sort the list of languages? -
newer link:
The Minimum Content Size In CSS Grid