Page not found (404)

Request Method: GET
Request URL: https://www.billhi.com/cart/to/add/item/13/num/1

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

  1. api-auth/
  2. admin/
  3. bill
  4. news
  5. note
  6. company
  7. item
  8. trademark
  9. files
  10. cart [name='index_cart']
  11. cart /remove/<int:id> [name='remove_cart']
  12. cart /empty [name='empty_cart']
  13. cart /change/<int:id>/<int:num> [name='change_cart']
  14. cart /count [name='count_cart']
  15. cart /checkout [name='checkout_cart']
  16. user
  17. work
  18. address [name='address_user']
  19. address/add [name='addAddress_user']
  20. address/<int:id> [name='viewAddress_user']
  21. address/edit/<int:id> [name='editAddress_user']
  22. address/remove/<int:id> [name='delAddress_user']
  23. invoice [name='invoice_bill']
  24. invoice/add [name='addInvoice_bill']
  25. invoice/edit/<int:id> [name='editInvoice_bill']
  26. invoice/cancel/<int:id> [name='cancelInvoice_bill']
  27. comment [name='comment_bill']
  28. comment/add/<int:id> [name='addComment_bill']
  29. form
  30. info/<str:cname> [name='info_web']
  31. wechat
  32. ^ckeditor/
  33. [name='index_web']
  34. ^static/(?P<path>.*)$
  35. ^file/(?P<path>.*)$

The current path, cart/to/add/item/13/num/1, 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.