Page not found (404)

Request Method: GET
Request URL: https://mirtorg.uz/news/

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

  1. __debug__/
  2. admin/
  3. ckeditor/
  4. sitemap.xml/ [name='django.contrib.sitemaps.views.sitemap']
  5. [name='home']
  6. products/ [name='products']
  7. products/<slug:slug> [name='product_detail']
  8. about_us/ [name='about_us']
  9. blog/ [name='news']
  10. blog/<slug:slug>/ [name='news_detail']
  11. contacts/ [name='contacts']
  12. send_massage_to_manager/<int:pk>/ [name='send_message']
  13. contact_message/ [name='contact_message']
  14. search/ [name='search']
  15. ^media/(?P<path>.*)$

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