Page not found (404)

Request Method: GET
Request URL: http://brighterbees.org/free-courses/

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

  1. admin/
  2. [name='home']
  3. signup/ [name='signup']
  4. signin/ [name='signin']
  5. logout [name='logout']
  6. profile/ [name='profile']
  7. updateProfile/ [name='updateProfile']
  8. token/ [name='token_send']
  9. verify/<str:auth_token> [name='verify_token']
  10. education/add [name='addEducation']
  11. education/edit/<id> [name='editEducation']
  12. education/delete/<id> [name='deleteEducation']
  13. experience/add [name='addExperience']
  14. experience/edit/<id> [name='editExperience']
  15. experience/delete/<id> [name='deleteExperience']
  16. <username> [name='seeprofile']
  17. contact/ [name='contact']
  18. skill-badges/
  19. skill-stack/
  20. articles/
  21. v1/api/skill/
  22. accounts/reset-password [name='password_reset']
  23. accounts/reset-password-done [name='password_reset_done']
  24. accounts/reset-password-confirm/<uidb64>/<token> [name='password_reset_confirm']
  25. accounts/reset-password-complete [name='password_reset_complete']
  26. ^static/(?P<path>.*)$
  27. ^media/(?P<path>.*)$

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