Page not found (404)

Request Method: GET
Request URL: https://texnopark.com/course/view.php?id=5

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

  1. admin/
  2. [name='main_page']
  3. contact/ [name='contact_page']
  4. about/ [name='about_page']
  5. startup/ [name='startup_page']
  6. startups/ [name='startups_page']
  7. search_startups/ [name='search_startups']
  8. startup/<int:startup_id>/ [name='startup_detail_page']
  9. projects/ [name='projects_page']
  10. search_projects/ [name='search_projects']
  11. project/<int:project_id> [name='projects_detail_page']
  12. news/ [name='news_page']
  13. search_news/ [name='search_news']
  14. news/<int:news_id>/ [name='news_detail_page']
  15. family/ [name='family_page']
  16. learning/ [name='academy_page']
  17. inspect/ [name='inspect_page']
  18. ^static/(?P<path>.*)$
  19. ^media/(?P<path>.*)$

The current path, course/view.php, 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.