Page not found (404)

“/home/li5adsb0sxu0/virtual/static/css/images/bg01.png” does not exist
Request Method: GET
Request URL: https://2022.ieeeicme.org/virtual/static/css/images/bg01.png

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

  1. admin/
  2. accounts/login/
  3. accounts/logout/
  4. accounts/password_reset/
  5. password_reset/done/
  6. reset/<uidb64>/<token>/ [name='password_reset_confirm']
  7. reset/done/ [name='password_reset_complete']
  8. accounts/register/
  9. schedule/
  10. session/
  11. profile/
  12. edit_profile/
  13. change_password/
  14. ^static/(?P<path>.*)$

The current path, static/css/images/bg01.png, 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.