Page not found (404)

Request Method: GET
Request URL: http://isaac.com/sitemap.aspx

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

  1. ^admin/
  2. ^ ^$ [name='index']
  3. ^ ^about/$ [name='about']
  4. ^ ^lookup-banner/(?P<number_banner>\d+)/$ [name='lookup-banner']
  5. ^ ^lookup-banner/$ [name='lookup-banner']
  6. ^ ^history/$ [name='history']
  7. ^ ^portfolio/$ [name='portfolio']
  8. ^ ^contact/$ [name='contact']
  9. ^ ^articles/$ [name='news']
  10. ^ ^article/(?P<news_slug>[-\w]+)/$ [name='view_news']
  11. ^tinymce/
  12. ^media\/(?P<path>.*)$

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