Page not found (404)

Request Method: GET
Request URL: http://127.0.0.1:8997/product/ps/21.html

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

  1. [name='index']
  2. prodcuts.html [name='products']
  3. prodcuts<int:prodcuts_id>.html [name='products_item']
  4. prodcut/<str:prodcut_mode>.html [name='product']
  5. introduction.html [name='introduction']
  6. calc.html [name='calc']
  7. technicalsupport.html [name='technicalsupport']
  8. blog/<int:blog_id>.html [name='blog']
  9. solutions.html [name='solutions']
  10. solution/<int:solution_id>.html [name='solution']
  11. cases.html [name='cases']
  12. case/<int:case_id>.html [name='case']
  13. contactus.html [name='contactus']
  14. poster.html [name='poster']
  15. poster_p.html [name='poster1']
  16. admin/
  17. ueditor/
  18. ^media/(?P<path>.*)$

The current path, product/ps/21.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.