Page not found (404)

Request Method: GET
Request URL: http://feranmilimited.com/services/img/team/1.jpg

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

  1. admin/
  2. [name='index']
  3. about/ [name='about']
  4. contact/ [name='contact']
  5. blogs/ [name='blogs']
  6. services/ [name='services']
  7. projects/ [name='projects']
  8. team/ [name='team']
  9. blog/<str:post_id> [name='post_detail']
  10. project/<str:project_id> [name='project_detail']
  11. ^media\/(?P<path>.*)$

The current path, services/img/team/1.jpg, 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.