Page not found (404)

Request Method: GET
Request URL: http://35.174.108.214/category/lifestyle/

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

  1. admin/
  2. [name='chat']
  3. api/v1/sign-up [name='user_registration']
  4. api/v1/login [name='user_login']
  5. api/v1/refresh-token [name='refresh_access_token']
  6. api/v1/payment-page [name='payment_page']
  7. api/v1/payment-new-customer [name='payment_for_new_customer']
  8. api/v1/account-verify [name='account_verify']
  9. api/v1/forgot-password [name='forgot_password']
  10. api/v1/create-password [name='create_password']
  11. api/v1/message-history [name='message_history']
  12. api/v1/create-prompt [name='create_prompt']
  13. api/v1/cancel-subcription [name='subcription_cancel']
  14. api/v1/plans [name='plan_details']
  15. api/v1/checkout [name='create_checkout_session']
  16. api/v1/google-signin [name='google_login']
  17. api/v1/video-generator [name='video_generator']
  18. api/v1/auto-charge [name='auto_charge']
  19. ^static/(?P<path>.*)$
  20. ^media/(?P<path>.*)$
  21. ^static/(?P<path>.*)$
  22. ^media/(?P<path>.*)$

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