In your main urls.py you only have one regex matchin anything starting with polls, so "/" does not match anything. If you type http://127.0.0.1:8000/polls/ you should see your index.
On Jun 4, 6:45 pm, Ross <ross.j...@gmail.com> wrote: > I've been working my way through the Django tutorial and everything > has gone fine until I came across the part near the end of section 3 > about decoupling the urlconfs. I did as follows: I copied urls.py into > my polls directory (C:\mysite\polls\urls.py). It now looks like this: > > from django.conf.urls.defaults import * > > from django.contrib import admin > admin.autodiscover() > > urlpatterns = patterns('mysite.polls.views', > (r'^$', 'index'), > (r'^(?P<poll_id>\d+)/$', 'detail'), > (r'^(?P<poll_id>\d+)/results/$', 'results'), > (r'^(?P<poll_id>\d+)/vote/$', 'vote'), > ) > > I then changed the original urls.py (C:\mysite\urls.py) to look like > this: > > from django.conf.urls.defaults import * > > from django.contrib import admin > admin.autodiscover() > > urlpatterns = patterns('', > (r'^polls/', include('mysite.polls.urls')), > ) > > Unfortunately, now when I runserver and open my localhost > athttp://127.0.0.1:8000/, I get a 404 page not found message. What > happened? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---