Page not found (404)

Request Method: GET
Request URL: http://127.0.0.1:5000/sitemap.html

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

  1. admin/
  2. cart/
  3. orders/
  4. auth/
  5. administration/
  6. tech-time/
  7. 404/ [name='error404_view']
  8. about/ [name='about_view']
  9. login/ [name='login_view']
  10. profile/ [name='profile_view']
  11. wishlist/ [name='wishlist_view']
  12. view-cart/ [name='view_cart_view']
  13. delivery/ [name='delivery_view']
  14. privacy-policy/ [name='privacy_policy_view']
  15. terms-of-user/ [name='terms_of_use_view']
  16. product/
  17. contacts/ [name='contacts_view']
  18. create-feedback/ [name='create_feedback_view']
  19. [name='index_view']
  20. ^media/(?P<path>.*)$

The current path, sitemap.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.