Page not found (404)

Request Method:GET
Request URL:https://www.morethanmusic.biz/index.php

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

  1. ^admin/onsite/
  2. ^admin/
  3. ^ ^$ [name='home']
  4. ^ ^join-the-team/$ [name='join']
  5. ^ ^contact/$ [name='hire']
  6. ^ ^login/$ [name='login']
  7. ^ ^photo-login/$ [name='photo_login']
  8. ^ ^api/
  9. ^ ^(?P<slug>[\w_-]+)/$ [name='section']
  10. ^ ^(?P<slug>[\w_-]+)/(?P<section_slug>[\w_-]+)/$ [name='section']
  11. ^ ^(?P<slug>[\w_-]+)/gallery/(?P<id>[0-9]+)/$ [name='section']
  12. ^static/(?P<path>.*)$
  13. ^media\/(?P<path>.*)$

The current URL, index.php, 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.