Page not found (404)

Request Method: GET
Request URL: https://rcsconsult.net/wp/404.shtml

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

  1. sitemap.xml
  2. only-admins-dashboard/
  3. [name='index']
  4. training/webinar [name='webinar-taining']
  5. training/in-person-training [name='in-person-training']
  6. training/<slug:slug>/ [name='webinar_details']
  7. jobs/recent-jobs [name='recent-jobs']
  8. adverts/ [name='adverts']
  9. job/<slug:slug>/ [name='job_details']
  10. team [name='team-members']
  11. contact [name='contact']
  12. about-us/our-story [name='ourstory']
  13. solutions/all-services [name='all_services']
  14. solution-details/<slug:slug>/ [name='service_details']
  15. how-we-work-with-you [name='how_we_work_with_you']
  16. about/privacy-policy [name='privacy_policy']
  17. about/about-us [name='about']
  18. blogs/all-blogs [name='all_blogs']
  19. subscribe [name='subscribe']
  20. clients/spotlights [name='client_spotlight']
  21. client-remarks/<slug:slug>/ [name='client_spotlight_details']
  22. reader-digest [name='reader_digest']
  23. reader-digests/<slug:slug>/ [name='reader_digest_details']
  24. rcs/
  25. admin/util/taggit_autocomplete_modified/
  26. blog/comments/
  27. blog/comments/
  28. <slug:slug> [name='entry_link']
  29. blog/
  30. ckeditor/
  31. tracking/
  32. ^static/(?P<path>.*)$
  33. ^media/(?P<path>.*)$

The current path, wp/404.shtml, 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.