python - Django Tutorial - Part 1 - URL didn't match -
this has been asked before, problems placement of mysite/urls.py or missing text somewhere. i've gone on in detail, doesn't apply here. i'm following django tutorial exactly, means hasn't referenced including polls app in settings.py file. can pull right view if manually type in "polls" @ end of url, in " http://127.0.0.1:8000/polls " shouldn't have work. i'm assuming tutorial isn't wrong in way. link tutorial is: https://docs.djangoproject.com/en/1.9/intro/tutorial01/ the error get: page not found (404) request method: request url: http://127.0.0.1:8000/ using urlconf defined in mysite.urls, django tried these url patterns, in order: ^polls/ ^admin/ current url, , didn't match of these. my views.py file: from django.shortcuts import render django.http import httpresponse def index(request): return httpresponse("hello, world. you're @ polls index.") my polls/urls.py file: from django.conf.url...