Page not found (404)

Request Method: GET
Request URL: http://localhost:8001/product/

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

  1. admin/
  2. login [name='login']
  3. login_next [name='login_next']
  4. login_now [name='login_now']
  5. login_now2 [name='login_now2']
  6. logout [name='logout']
  7. about-us [name='about_us']
  8. contact-us [name='contact_us']
  9. terms-and-conditions [name='terms_and_conditions']
  10. privacy-policy [name='privacy_policy']
  11. faq [name='faq']
  12. pricing [name='pricing']
  13. checkout [name='checkout']
  14. [name='home']
  15. gif-maker [name='gif-maker']
  16. upload_video_file [name='upload_video_file']
  17. process_video_file [name='process_video_file']
  18. download_youtube_video [name='download_youtube_file']
  19. email_animated_file [name='email_animated_file']
  20. post_feedback [name='post_feedback']
  21. ^static/(?P<path>.*)$
  22. ^media/(?P<path>.*)$

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