Page not found (404)

Request Method: GET
Request URL: http://192.168.204.20:8000/urllist.txt

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

  1. admin/
  2. accounts/
  3. [name='index']
  4. sales [name='sales']
  5. profile [name='profile']
  6. chat [name='chat']
  7. logout-page [name='logout']
  8. accounts/
  9. innovation/
  10. notifications/
  11. news/
  12. research/
  13. education/
  14. ckeditor
  15. schema/ [name='schema']
  16. api/ [name='swagger-ui']
  17. ^media/(?P<path>.*)$

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