Page not found 404 on Django site?

前端 未结 13 2319
既然无缘
既然无缘 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:20

    Add the below line in your Mysite/urls.py

    url(r'^$', views.index, name='index'),
    

    and check. If you have created your project correctly, it should work. Else something like above might have happened to have more than one files so confused.

    0 讨论(0)
提交回复
热议问题