After enabling the admin interface and starting the development web server, e.g. 128.0.0.1:8000, I can access the admin interface on
128.0.0.1:8000/admin.
Obviously due to the following URL namespace
url(r'^admin/', include(admin.site.urls)).
What do I need to do to redirect requests to 128.0.0.1:8000/automatically to 128.0.0.1:8000/admin?
URL Namespace
url(r'^$/', include(admin.site.urls))
doesn't seem to be a solution.
Simon
source share