首页 > 解决方案 > 如何在 django 中配置 urls.py 以重定向到另一个文件的 url?

问题描述

标签: pythondjango

解决方案


只需这样做:

path('notes/', include('notes.urls'))

推荐阅读