Incorrectly ordered middleware can stop the middleware working as intended.
The order of middleware affections the outcome.
Some middleware should be near the end of the middleware list to ensure it is one of the last to be called.
For example RedirectFallbackMiddleware and FlatpageFallbackMiddleware should be near the end.
If our GitHub code review bot spots this issue in your pull request it gives this advice:
1 | + | MIDDLEWARE =[ | |
2 | + | "django.middleware.security.SecurityMiddleware", | |
3 | + | "django.contrib.sessions.middleware.SessionMiddleware", | |
4 | + | "django.contrib.redirects.RedirectFallbackMiddleware", |
Incorrectly ordered middleware can stop the middleware working as intended.
Read more5 | + | "django.middleware.common.CommonMiddleware", | |
6 | + | "django.contrib.auth.middleware.AuthenticationMiddleware", | |
7 | + | "django.contrib.messages.middleware.MessageMiddleware", | |
8 | + | ] |