Page not found (404)

Request Method: GET
Request URL: https://recursionnitd.in/forum/start/

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

  1. admin/
  2. [name='home']
  3. login/ [name='login']
  4. logout/ [name='logout']
  5. oauth/
  6. forum/ profile/
  7. forum/ team/ [name='team_page']
  8. forum/ webdteam/ [name='webd_team']
  9. forum/ faculty/ [name='faculty']
  10. forum/ add [name='add_question']
  11. forum/ [name='list_questions']
  12. forum/ detail/<int:id>/ [name='detail_questions']
  13. forum/ update/<int:id>/ [name='update_question']
  14. forum/ question/<int:id>/answer [name='add_answer']
  15. forum/ answer/<int:id> [name='update_answer']
  16. forum/ deleteanswer/<int:id> [name='delete_answer']
  17. forum/ answer/<int:id>/vote [name='voting']
  18. forum/ follow/<int:id>/ [name='edit_following']
  19. forum/ comment/<int:id>/ [name='add_comment']
  20. forum/ comment_answer/<int:id>/ [name='add_comment_answer']
  21. forum/ editcomment/<int:id>/ [name='update_comment']
  22. forum/ editcomment_answer/<int:id>/ [name='update_comment_answer']
  23. forum/ deletecomment/<int:id>/ [name='delete_comment']
  24. forum/ deletecomment_answer/<int:id>/ [name='delete_answer_comment']
  25. forum/ filter/<int:id>/ [name='filter_question']
  26. forum/ search/<str:key> [name='search_question']
  27. forum/ ^markdownx/
  28. forum/ ^media/(?P<path>.*)$
  29. events/
  30. profile/
  31. team/
  32. blog/
  33. experience/
  34. get_started/
  35. ^markdownx/
  36. ^media/(?P<path>.*)$

The current path, forum/start/, 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.