Page not found (404)

Request Method: GET
Request URL: https://excelcareerplus.com/contact-page/

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

  1. [name='landing']
  2. landing/ [name='landing']
  3. tinymce/
  4. ^post/(?P<slug>[-\w]+)/$ [name='post']
  5. post/<slug:slug>/like-post/ [name='like_post']
  6. tag/<slug:tag_slug>/ [name='tag_view']
  7. blog-list/ [name='blog_list']
  8. contact/ [name='contact_form']
  9. contact/submit/ [name='contact_form_submit']
  10. ^media/(?P<path>.*)$
  11. admin/
  12. contact/submit [name='contact_form_submit']
  13. tag/<slug:tag_slug>/ [name='tag_view']
  14. featured-courses/ [name='featured_courses']
  15. ^static/(?P<path>.*)$

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