Page not found 404 on Django site?

前端 未结 13 2313
既然无缘
既然无缘 2020-12-14 00:46

I\'m following the tutorial on Django\'s site to create a simple poll app. However, Django is unable to resolve \"//127.0.0.1:8000/polls\" , even though I\'ve defined the re

13条回答
  •  温柔的废话
    2020-12-14 01:11

    You put the urls.py folder into the outer MySite folder, you are suppose to put it in the inner one so its not mySite/urls.py, but mySite/mySite/urls.py:

    ran into the same mistake when i did the tutorial

提交回复
热议问题