Page not found (404)

Request Method: GET
Request URL: http://baygroupco.com/members/index-2.html

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

  1. admin/
  2. ckeditor/
  3. [name='index']
  4. about/ [name='about']
  5. members/ [name='members']
  6. member_details/<str:id> [name='member_details']
  7. achievements/ [name='achievements']
  8. src/ [name='src']
  9. career/ [name='career']
  10. contact/ [name='contact']
  11. business_page/<name> [name='business_page']
  12. our_businesses_details/<str:id> [name='our_businesses_details']
  13. ^static/(?P<path>.*)$
  14. ^media/(?P<path>.*)$

The current path, members/index-2.html, 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.