mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Add catch-all redirect for /admin/
This commit is contained in:
parent
e236b7bf7b
commit
f2a42ab6fe
@ -43,7 +43,9 @@ urlpatterns = [
|
||||
|
||||
# The Django admin
|
||||
url(r"admin/", admin.site.urls),
|
||||
url(r"", admin.site.urls), # This is going away
|
||||
|
||||
# Catch all redirect back to /admin
|
||||
url(r"", RedirectView.as_view(permanent=True, url="/admin/")),
|
||||
|
||||
] + static.static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user