diff --git a/docs/en/docs/advanced/middleware.md b/docs/en/docs/advanced/middleware.md index 1d40b1c8f..c3966ab5d 100644 --- a/docs/en/docs/advanced/middleware.md +++ b/docs/en/docs/advanced/middleware.md @@ -68,6 +68,7 @@ Enforces that all incoming requests have a correctly set `Host` header, in order The following arguments are supported: * `allowed_hosts` - A list of domain names that should be allowed as hostnames. Wildcard domains such as `*.example.com` are supported for matching subdomains. To allow any hostname either use `allowed_hosts=["*"]` or omit the middleware. +* `www_redirect` - If set to True, requests to non-www versions of the allowed hosts will be redirected to their www counterparts. Defaults to `True`. If an incoming request does not validate correctly then a `400` response will be sent. diff --git a/docs_src/advanced_middleware/tutorial002.py b/docs_src/advanced_middleware/tutorial002.py index 405235ab9..0b2ca7394 100644 --- a/docs_src/advanced_middleware/tutorial002.py +++ b/docs_src/advanced_middleware/tutorial002.py @@ -4,7 +4,9 @@ from fastapi.middleware.trustedhost import TrustedHostMiddleware app = FastAPI() app.add_middleware( - TrustedHostMiddleware, allowed_hosts=["example.com", "*.example.com"] + TrustedHostMiddleware, + allowed_hosts=["example.com", "*.example.com"], + www_redirect=True, )