Page not found (404)

Request Method: GET
Request URL: http://darjeelingtrips.com/static/b/43.jepg
Raised by: django.views.static.serve

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

  1. admin/
  2. [name='home']
  3. sitemap.xml/ [name='sitemap']
  4. robots.txt/ [name='robots']
  5. about-us/ [name='about']
  6. contact-us/ [name='contact']
  7. privacy-policy/ [name='pp']
  8. cookie-policy/ [name='cp']
  9. enquiry/ [name='enquiry']
  10. newsletter-subscribe/ [name='newsletter-subscribe']
  11. blogs/
  12. destinations/
  13. trips/
  14. enquiry/
  15. ckeditor/
  16. reset_password [name='reset_password']
  17. reset_password_sent [name='password_reset_done']
  18. reset/<uidb64>/<token>/ [name='password_reset_confirm']
  19. reset_password_complete/ [name='password_reset_complete']
  20. ^media/(?P<path>.*)$
  21. ^static/(?P<path>.*)$

The current path, static/b/43.jepg, 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.