问题
Is there a way to change the url to open the admin site in django? I don't want to use the default /admin url. I am new to django so please try giving a bit more detailed information.
回答1:
In urls.py, change the line that reads:
(r'^admin/(.*)', admin.site.root),
to something like:
(r'^new_admin/(.*)', admin.site.root),
so now instead of http://example.com/admin you'd use http://example.com/new_admin
回答2:
Sure, the file urls.py in the root of your project maps URLs to handlers. Just change the line
(r'^admin/', include(admin.site.urls)),
more from Django tutorial
来源:https://stackoverflow.com/questions/968380/changing-admin-site-url