Page not found (404)

Request Method: GET
Request URL: https://www.orionstudyabroad.com/countries.html

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

  1. admin/
  2. superadmin/
  3. [name='index']
  4. aboutus [name='aboutus']
  5. counselling [name='counselling']
  6. visa [name='visa']
  7. language [name='language']
  8. assistance [name='assistance']
  9. free_education [name='free_education']
  10. countries [name='countries']
  11. popular_courses [name='popular_courses']
  12. contact_us [name='contact_us']
  13. blog [name='blog']
  14. blog_detail<int:bid> [name='blog_detail']
  15. associate_with_us> [name='associate_with_us']
  16. sitemap.xml [name='sitemap']
  17. privacy_policy [name='privacy_policy']
  18. ^media/(?P<path>.*)$
  19. ^static/(?P<path>.*)$

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