Page not found (404)

Request Method: GET
Request URL: https://www.clinicmedical.az/az/product.php?id=10

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

  1. admin/
  2. [name='index']
  3. about/ [name='about']
  4. blog/ [name='blog']
  5. detail/<slug:slug> [name='detail']
  6. product_category/ [name='product_category']
  7. product_subcategory/<slug:slug> [name='product_subcategory']
  8. product_detail/<slug:slug> [name='product_detail']
  9. services/ [name='services']
  10. contact/ [name='contact']
  11. ^media/(?P<path>.*)$

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