[Fixed]-Vanity urls clashing with admin urls django

1👍

Your middleware redirects /admin/ to /admin. This does not match the regex for the admin, only for your user profile. With this middleware you cannot reach the admin index page.

One solution is to only redirect if the old path, with slashes, is invalid and the new one is valid.

👤knbk

Leave a comment