Page not found (404)

Request Method: GET
Request URL: https://www.miciudadrock.com.ar/songs.html

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

  1. ^admin/
  2. ^$ [name='home']
  3. ^tinymce/
  4. ^latest/feed/$ [name='rss']
  5. ^sitemap\.xml$ [name='django.contrib.sitemaps.views.sitemap']
  6. ^404$ [name='404']
  7. ^500$ [name='500']
  8. ^noticia/(?P<slug>[0-9a-zA-Z\.\-\_]+)$ [name='nota']
  9. ^endpoint$ [name='api']
  10. ^static\/(?P<path>.*)$
  11. ^media\/(?P<path>.*)$
  12. ^static\/(?P<path>.*)$

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