Page not found (404)

Request Method: GET
Request URL: https://capexme.com/eng/

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

  1. admin/
  2. [name='index']
  3. about/ [name='about']
  4. blog/<str:slug>/detail [name='blog_detail']
  5. services/ [name='services']
  6. service/<str:slug>/detail [name='services_detail']
  7. teams/ [name='teams']
  8. team_detail/<slug:slug>/ [name='team_detail']
  9. privacy-policy/ [name='privacy']
  10. contact/ [name='contact']
  11. tinymce/
  12. ^static/(?P<path>.*)$
  13. ^media/(?P<path>.*)$

The current path, eng/, 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.