Page not found (404)

Request Method: GET
Request URL: https://urbanstoneinc.com/product.php?product=Travetine

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

  1. admin/
  2. accounts/
  3. [name='home']
  4. kitchen [name='kitchen']
  5. update_kitchen [name='update_kitchen']
  6. product/<pk>/ [name='product']
  7. filter_list_product/ [name='filter_list_product']
  8. about/ [name='about']
  9. contact/ [name='contact']
  10. categories/ [name='categories']
  11. product_list/ [name='product_list']
  12. gallery/ [name='gallery']
  13. <int:id>/ [name='detail']
  14. search/ [name='search']
  15. product_list_view/<int:id>/ [name='product_list_view']
  16. product_list_quantity/ [name='product_list_quantity']
  17. contact_email/ [name='contact_email']
  18. update_prd_qty/ [name='update_prd_qty']
  19. __debug__/
  20. ^media\/(?P<path>.*)$
  21. ^static\/(?P<path>.*)$

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