Page not found (404)

Request Method: GET
Request URL: https://seguah.com/tips.html

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

  1. admin/
  2. [name='index']
  3. search/ [name='search_book']
  4. my_cart/ [name='my_cart']
  5. request_book/ [name='request_book']
  6. bookshop/ [name='bookshop']
  7. bookshop/book_details/<int:book_id>/ [name='book_details']
  8. events/ [name='events']
  9. events/event_details/<int:event_id>/ [name='event_details']
  10. book_listing/ [name='book_listing']
  11. book_donation/ [name='book_donation']
  12. about/ [name='about_us']
  13. contact/ [name='contact_us']
  14. profile/ [name='profile']
  15. newsletter_subscription/ [name='newsletter_subscription']
  16. privacy/ [name='privacy']
  17. terms/ [name='terms']
  18. faq/ [name='faq']
  19. services/ [name='services']
  20. accounts/
  21. accounts/
  22. dashboard/
  23. ^static/(?P<path>.*)$
  24. ^media/(?P<path>.*)$

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