Page not found (404)

Request Method: GET
Request URL: https://shadowsads.com/blog-details/1/blog-details.html

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

  1. admin/
  2. [name='index']
  3. about/ [name='about']
  4. contact/ [name='contact']
  5. portfolio/ [name='portfolio']
  6. blog/ [name='blog']
  7. blog-details/<str:pk>/ [name='blog_details']
  8. promotional-products/ [name='promotional_products']
  9. printig-services/ [name='printing_services']
  10. tinymce/
  11. ^static/(?P<path>.*)$
  12. ^media/(?P<path>.*)$

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