Page not found (404)

Request Method: GET
Request URL: https://medmetry.com/index.html

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

  1. admin/
  2. resume/<int:candidate_id>/json/ [name='candidate_resume']
  3. resume/<int:candidate_id>/full/ [name='resume_view']
  4. resume/<int:candidate_id>/blind/ [name='blind_resume_view']
  5. resume/<int:candidate_id>/description/ [name='resume_description_view']
  6. job/<int:job_id>/json/ [name='job_json']
  7. [name='index']
  8. health-staffing/ [name='health_staffing']
  9. compare-offers/ [name='compare_offers']
  10. consulting/ [name='consulting']
  11. about/ [name='about']
  12. news-feed/ [name='news']
  13. find-jobs/ [name='find_jobs']
  14. rcm/ [name='rcm']
  15. interest/ [name='interest']

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