Page not found (404)

Request Method: GET
Request URL: http://127.0.0.1:8000/img/favicon.ico

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

  1. admin/
  2. [name='home']
  3. about/ [name='about']
  4. course/ [name='course']
  5. blog/ [name='blog']
  6. contact/ [name='contact']
  7. course/<slug:slug> [name='single_course']
  8. ckeditor/
  9. search/ [name='search']
  10. certificate/ [name='certificate']
  11. sitemap/ [name='sitemap']
  12. ^static/(?P<path>.*)$
  13. ^media/(?P<path>.*)$

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