Page not found (404)

Request Method: GET
Request URL: https://rewtstreesandgardens.co.uk/testimonials.html

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

  1. admin/
  2. ^ ^$ [name='index']
  3. ^ ^blog/$ [name='blog']
  4. ^ ^blog/(?P<alias>[0-9A-Za-z\-]+)/$ [name='blog-item']
  5. ^ ^about/$ [name='about']
  6. ^ ^contacts/$ [name='contacts']
  7. ^ ^faq/$ [name='contacts']
  8. ^ ^environment/$ [name='environment']
  9. ^ ^testimonials/$ [name='testimonials']
  10. ^ ^ajax/$ [name='ajax']
  11. ^ ^services/(?P<alias>[0-9A-Za-z\-]+)/$ [name='service']
  12. ^ ^services/(?P<service_lvl1>[0-9A-Za-z\-]+)/(?P<alias>[0-9A-Za-z\-]+)/$ [name='service_lvl2']
  13. ^ ^portfolio/$ [name='portfolio']
  14. ^ ^portfolio/(?P<alias>[0-9A-Za-z\-]+)/$ [name='portfolio_service']
  15. ^ ^portfolio/(?P<service>[0-9A-Za-z\-]+)/(?P<alias>[0-9A-Za-z\-]+)/$ [name='portfolio_service_item']
  16. ^ ^(?P<alias>[0-9A-Za-z\-]+)/$ [name='textpage']
  17. ^ ^media/(?P<path>.*)$
  18. ^ckeditor/
  19. ^media/(?P<path>.*)$

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