Page not found (404)

Request Method: GET
Request URL: http://employment2deployment.com/about/

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

  1. admin/
  2. [name='index']
  3. about-e2d/ [name='about_e2d']
  4. about-book/ [name='about_book']
  5. about-author/ [name='about_author']
  6. testimonials/ [name='testimonials']
  7. contact/ [name='contact']
  8. contact-success [name='contact_success']
  9. buy-the-book/ [name='buy_the_book']
  10. blog/ [name='blog']
  11. blog/<int:pk>/ [name='blog_detail']
  12. blog/<category>/ [name='blog_category']
  13. ckeditor/
  14. ^media/(?P<path>.*)$

The current path, about/, 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.