Page not found (404)

Request Method: GET
Request URL: https://techneith.com/blog/1

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

  1. admin/
  2. robots.txt
  3. [name='home']
  4. contact/ [name='contact']
  5. buy/ [name='buy_app']
  6. blogs/ [name='blog']
  7. blogs/<str:slug>/ [name='blog_detail']
  8. resources/<str:slug>/
  9. products/ [name='product']
  10. pricing/<str:slug>/
  11. privacy/<str:slug>/
  12. products/checkout/<str:slug>
  13. products/<str:slug>/ [name='test']
  14. comments/<str:comment_type>/<str:page>/
  15. dashboards/<str:slug>/
  16. about-us/ [name='about']
  17. contact-us/ [name='contact']
  18. odoo-development/
  19. live-dashboards/<str:app>/<str:slug>/
  20. testing-development/<str:slug>/
  21. demodashboard/ [name='demodashboard']
  22. custom-demo/dashboard/ [name='customdemodashboard']
  23. tabluedev/ [name='tabluedev']
  24. service/
  25. [name='home']
  26. config/
  27. create-checkout-session/
  28. success/
  29. cancelled/
  30. webhook
  31. products/
  32. froala_editor/
  33. sitemap.xml [name='django.contrib.sitemaps.views.sitemap']
  34. ^static/(?P<path>.*)$
  35. ^media/(?P<path>.*)$

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