Page not found (404)

Request Method: GET
Request URL: https://www.webdesign7.co.uk/blog/what-is-a-cta-button-and-why-every-website-should-have-one

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

  1. ^$ [name='index']
  2. ^contact/$ [name='contact']
  3. ^digital-services/$ [name='services']
  4. ^testimonials/$ [name='testimonials']
  5. ^about/$ [name='about']
  6. ^category/(?P<category_slug>[\w-]+)/$ [name='post_by_category']
  7. ^tag/(?P<tag_slug>[\w-]+)/$ [name='post_by_tag']
  8. ^time/$ [name='todays_time']
  9. ^cookie/$ [name='cookie']
  10. ^(?P<pk>\d+)/(?P<post_slug>[\w\d-]+)$ [name='post_detail']
  11. ^track_user/$ [name='track_user']
  12. ^portfolio/$ [name='portfolio']
  13. ^portfolio/(?P<work_slug>[\w-]+)/$ [name='portfolio_detail']
  14. ^admin/
  15. ^cadmin/
  16. ^media/(?P<path>.*)$

The current path, blog/what-is-a-cta-button-and-why-every-website-should-have-one, 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.