Page not found (404)

Request Method: GET
Request URL: https://127.0.0.1:443/about.html/comment-page-1?replyTo=161

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

  1. admin/
  2. mdeditor/
  3. [name='index']
  4. category/<str:p>/ [name='category']
  5. tag/<str:p>/ [name='tag']
  6. archives [name='archives']
  7. ^detail/(?P<post_id>\d+)$ [name='post_detail']
  8. ^page/(?P<page_id>\d+)$ [name='page_detail']
  9. ^search/$ [name='haystack_search']
  10. crecard [name='crecard']
  11. ^cdetail/(?P<crecard_id>\d+)$ [name='crecard_detail']
  12. ^csearch/$ [name='crecard_search']
  13. go
  14. sitemap.xml [name='django.contrib.sitemaps.views.sitemap']
  15. robots.txt
  16. ^search/
  17. ^media/(?P<path>.*)$
  18. ^static/(?P<path>.*)$

The current path, about.html/comment-page-1, 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.