Page not found (404)

Request Method: GET
Request URL: https://pyblog.ru/faq/sozdanie_proekta_na_django

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

  1. admin/
  2. robots.txt
  3. sitemap.xml [name='django.contrib.sitemaps.views.sitemap']
  4. ckeditor/
  5. [name='posts_list_url']
  6. posts/ [name='posts_list_url']
  7. faq/ [name='faq_url']
  8. contacts/ [name='contacts_url']
  9. post/addlike/<str:slug>/ [name='addlike']
  10. post/<str:slug>/ [name='post_detail_url']
  11. category/<str:slug>/ [name='category_detail_url']
  12. tag/<str:slug>/ [name='tag_detail_url']
  13. ^media/(?P<path>.*)$
  14. ^media/(?P<path>.*)$

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