diff --git a/Services/Website/README.md b/Services/Website/README.md
index 9255e62..5d21b0a 100644
--- a/Services/Website/README.md
+++ b/Services/Website/README.md
@@ -38,14 +38,16 @@ The persistence backend runs as a `Fluent` service inside the application's Serv
Requests pass through the middleware chain in this order (outermost first), then reach the routes:
```
LogRequestsMiddleware
- → SecurityHeadersMiddleware (security headers on every response)
- → VaryMiddleware (marks every response as varying on Accept-Encoding)
- → ResponseCompressionMiddleware (gzip/deflate above the size threshold)
- → LocalizationMiddleware (negotiates the request's language)
- → NotFoundMiddleware (renders the localized not-found page on .notFound)
- → FileMiddleware (serves Resources/Static)
-RootController (GET / → landing page)
-HealthController (GET /health → liveness, GET /health/ready → readiness)
+ → SecurityHeadersMiddleware (security headers on every response)
+ → HTTPSRedirectMiddleware (301 to site.origin when forwarded over plain HTTP)
+ → TrailingSlashRedirectMiddleware (301 to the path without a trailing slash)
+ → VaryMiddleware (marks every response as varying on Accept-Encoding)
+ → ResponseCompressionMiddleware (gzip/deflate above the size threshold)
+ → LocalizationMiddleware (negotiates the request's language)
+ → NotFoundMiddleware (renders the localized not-found page on .notFound)
+ → FileMiddleware (serves Resources/Static)
+RootController (GET / → landing page)
+HealthController (GET /health → liveness, GET /health/ready → readiness)
```
The router is created with `.autoGenerateHeadEndpoints`, so each of those `GET` routes gets a `HEAD` sibling for free.
@@ -63,7 +65,9 @@ Four of those are page-authored, optional, and **omitted by default** — the re
The fifth, `analytics`, is *configuration*-authored rather than page-authored: the executable builds an `Analytics` from the `analytics.*` keys and hands it to `RootController` and `NotFoundMiddleware`, which pass it to both pages. It renders as a `` plus a deferred `