Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想覆盖 satchmo 项目中的默认管理员 url。我现在有
www.example.com/admin/ 但我需要 www.example.com/Myadmin/。
这里我有一些限制,不能更改 satchmo 原始代码。我必须在我自己的 satchmo 项目中这样做。
请帮忙...
提前谢谢:)
这应该只是修改 urls.py 中的管理员条目的问题。您目前(我假设)在哪里:
(r'^admin/', include(admin.site.urls)),
将其更改为:
(r'^Myadmin/', include(admin.site.urls)),