Page not found (404)

“/app/staticfiles/assets/img/favicon.png” does not exist
Request Method: GET
Request URL: http://mhrdcs.com/static/assets/img/favicon.png
Raised by: django.views.static.serve

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

  1. logo/ [name='logo']
  2. fv/ [name='fv']
  3. admin/
  4. [name='home']
  5. contact-us/ [name='contact']
  6. about-us/ [name='about']
  7. careers/ [name='career']
  8. career_details/ [name='career_details']
  9. digital-marketing/ [name='digital_marketing']
  10. web-development/ [name='web_development']
  11. web-design/ [name='web_design']
  12. mobile-app-development/ [name='mobile_app_development']
  13. e-commerce-application/ [name='e_commerce_application']
  14. forex-crm/ [name='forex_crm']
  15. payment-gateway/ [name='payment_gateways']
  16. contact-mail/ [name='contact_mail']
  17. privacy-policy/ [name='privacy']
  18. logo-design/ [name='logo_design']
  19. pricing-and-plans/ [name='seo_package']
  20. raise-ticket/ [name='raise_ticket']
  21. divepay/ [name='divepay']
  22. deposit_divepay/ [name='deposit_divepay']
  23. success/ [name='success']
  24. blog/
  25. summernote/
  26. customer/
  27. dashboard/
  28. robots.txt
  29. ^static/(?P<path>.*)$

The current path, static/assets/img/favicon.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.