Page not found (404)

Request Method: GET
Request URL: https://www.bioquestpharma.net/contact_us

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

  1. sitemap.xml [name='django.contrib.sitemaps.views.sitemap']
  2. [name='index']
  3. index [name='index']
  4. about [name='aboutus']
  5. contact [name='contactus']
  6. ^category/(?P<slug>[-\w]+)/$ [name='profile']
  7. ^subcategory/(?P<slug>[-\w]+)/$ [name='subprofile']
  8. ^product/(?P<slug>[-\w]+)/$ [name='prodprofile']
  9. check [name='check']
  10. verify [name='verify']
  11. sendemail [name='sendemail']
  12. category [name='category']
  13. admin/
  14. __debug__/
  15. ^media/(?P<path>.*)$

The current path, contact_us, 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.