Page not found (404)

Request Method: GET
Request URL: https://hemifran.com/artists_o.html

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

  1. admin/
  2. ^$ [name='news_load']
  3. ^news/$ [name='news_home']
  4. ^news/detail/(?P<direction>[\w.@+-]+)/(?P<id>[\w.@+-]+)/(?P<artist_name>[\w|\W]+)/(?P<header>[\w|\W]+)/$ [name='news_detail']
  5. ^artists/(?P<letter>[\w.@+-]+)/$ [name='artists_home']
  6. ^artist/(?P<name>[\w|\W]+)/$ [name='artist_detail']
  7. ^tours/(?P<time>[\w.@+-]+)$ [name='tours_home']
  8. ^tours/detail/(?P<id>[\w.@+-]+)/(?P<artist>[\w\W.@+-]+)/(?P<tour_name>[\w\W.@+-]+)/$ [name='tour_detail']
  9. ^releases/$ [name='releases_home']
  10. ^about/$ [name='about']
  11. ^contact/$ [name='contact']
  12. ^links/$ [name='links']

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