Page not found (404)

Request Method: GET
Request URL: http://www.alliancesystems.com.br/home

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

  1. ^$
  2. ^quem_somos$
  3. ^clientes$
  4. ^eventos$
  5. ^contato$
  6. ^obrigado$
  7. ^marcas$
  8. ^marca/(?P<marca_id>\d+)$
  9. ^produtos$
  10. ^produtos/(?P<primeiro_nivel_id>\d+)$
  11. ^ajax_produtos/(?P<produto_id>\d+)$
  12. ^tipo_produto/(?P<tipo_produto_id>\d+)$
  13. aplicacoes/(?P<aplicacao_id>\d+)$
  14. produto/(?P<produto_id>\d+)$
  15. ^xml$
  16. ^admin/
  17. ^media/(?P<path>.*)$

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