Page not found (404)

Request Method: GET
Request URL: http://127.0.0.1:8000/aboutus.php

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

  1. [name='index']
  2. com/ [name='Com']
  3. about/ [name='about']
  4. email/ [name='email']
  5. technical/ [name='technical']
  6. artificial/ [name='artificial']
  7. portfolio/ [name='portfolio']
  8. contactus/ [name='contactus']
  9. company/ [name='company']
  10. blockchain/ [name='blockchain']
  11. market/ [name='market']
  12. admin/
  13. ^media/(?P<path>.*)$
  14. ^static/(?P<path>.*)$

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