Page not found (404)

Request Method: GET
Request URL: http://dehora.net:8856/journal/archives.html/000360.html

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

  1. ^admin/
  2. ^comments/
  3. ^ ^(?P<weblog_slug>\w+)/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\w{1,2})/(?P<slug>.*)/$
  4. ^ ^(?P<weblog_slug>\w+)/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\w{1,2})/$
  5. ^ ^(?P<weblog_slug>\w+)/(?P<year>\d{4})/(?P<month>\d{2})/$
  6. ^ ^(?P<weblog_slug>\w+)/(?P<year>\d{4})/$
  7. ^ ^(?P<weblog_slug>\w+)/archive/$
  8. ^ ^(?P<weblog_slug>\w+)/$
  9. ^ ^(?P<weblog_slug>\w+)/category/$
  10. ^ ^(?P<weblog_slug>\w+)/category/(?P<category_slug>\w+)/$
  11. ^ ^(?P<weblog_slug>\w+)/feeds/(?P<url>.+)/$
  12. ^ ^(?P<weblog_slug>\w+)/static/(?P<path>.*)$

The current URL, journal/archives.html/000360.html, 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.