Page not found (404)

Request Method: GET
Request URL: http://advatechengineering.com/contact-us/index.html

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

  1. admin/
  2. [name='index']
  3. category-listing/ [name='prolisting']
  4. products-category/<str:pk>/ [name='productscat']
  5. products-details/<str:pk>/ [name='productdetail']
  6. about-us/ [name='aboutus']
  7. infrastructure/ [name='infrastructure']
  8. clients/ [name='clients']
  9. career/ [name='career']
  10. gallery/ [name='gallery']
  11. advantage/ [name='advantage']
  12. get-quote/ [name='getquote']
  13. accolades/ [name='accolades']
  14. our-team/ [name='ourteam']
  15. blog-listing/ [name='blog']
  16. blog-post-01/ [name='post1']
  17. blog-post-02/ [name='post2']
  18. blog-post-03/ [name='post3']
  19. contact-us/ [name='contactus']
  20. ^images/(?P<path>.*)$
  21. ^static/(?P<path>.*)$

The current path, contact-us/index.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.