Page not found (404)

Request Method: GET
Request URL: http://vort.org/blog/2005/Aug/3

Using the URLconf defined in urls, Django tried these URL patterns, in this order:

  1. ^ ^tag/(?P<tag>[a-zA-Z0-9_.-]+)/$
  2. ^ ^tag/$
  3. ^ ^user/(?P<user>[a-zA-Z0-9_.-]+)/$
  4. ^ ^search/$
  5. ^ ^feeds/(?P<url>.*)/$
  6. ^ ^comments/
  7. ^ ^tools/
  8. ^ ^(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\w{1,2})/$
  9. ^ ^(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d{1,2})/(?P<slug>[-\w]+)/$
  10. ^ ^\d{4}/\d{2}/\d{1,2}/(?P<slug>[-\w]+)/trackback/$
  11. ^ ^\d{4}/\d{2}/\d{1,2}/(?P<slug>[-\w]+)/postTrackbacks/$
  12. ^ ^(?P<year>\d{4})/(?P<month>\d{2})/$
  13. ^ ^(?P<year>\d{4})/$
  14. ^ ^$
  15. ^comments/
  16. ^accounts/login/$
  17. ^accounts/logout/$
  18. ^admin/
  19. ^tools/
  20. ^rpc/
  21. ^media/custom/(.*)$
  22. ^media/(.*)$
  23. ^media/admin/(.*)$

The current URL, /blog/2005/Aug/3, didn't match any of these.

You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.