Page not found (404)

Request Method: GET
Request URL: https://productiveprogrammer.me/resume/download/assets%5CChristian_Ransom_Resume.pdf/
Raised by: resume.views.download

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

  1. ^ ^accounts/
  2. ^ ^dashboard/ [name='dashboard']
  3. ^ ^register/ [name='register']
  4. ^ ^oauth/
  5. ^ ^user_settings/ [name='user_settings']
  6. ^ ^google-login/$ [name='google_login']
  7. ^ login/<str:backend>/ [name='begin']
  8. ^ complete/<str:backend>/ [name='complete']
  9. ^ disconnect/<str:backend>/ [name='disconnect']
  10. ^ disconnect/<str:backend>/<int:association_id>/ [name='disconnect_individual']
  11. admin/
  12. fun/
  13. resume/ [name='resume_index']
  14. resume/ project/<int:pk>/ [name='project_detail']
  15. resume/ download/<str:path>/ [name='download']

The current path, resume/download/assets\Christian_Ransom_Resume.pdf/, matched the last one.

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.