Page not found (404)

Request Method: GET
Request URL: http://bilgisayamiyorum.com/question/65.aspx

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

  1. ^admin/
  2. ^$ [name='index']
  3. ^post/new/$ [name='newPost']
  4. ^post/(?P<post_id>[0-9]+)/$ [name='showPost']
  5. ^post/(?P<post_id>[0-9]+)/edit/$ [name='editPost']
  6. ^compute/category/(?P<category_name>[\w\-]+)/$ [name='computeCategory']
  7. ^compute/tag/(?P<tag_slug>[a-zA-Z0-9-]+)/$ [name='computeTag']
  8. ^compute/search/ [name='computeSearch']
  9. ^compute/(?P<list_type>[\w\-]+)/$ [name='computeList']
  10. ^user/(?P<username>[\w\-]+)/$ [name='showProfile']
  11. ^user/(?P<username>[\w\-]+)/edit/$ [name='editProfile']
  12. ^accounts/profile/$ [name='showProfile']
  13. ^activate/complete/$ [name='registration_activation_complete']
  14. ^activate/(?P<activation_key>\w+)/$ [name='registration_activate']
  15. ^register/$ [name='registration_register']
  16. ^register/complete/$ [name='registration_complete']
  17. ^register/closed/$ [name='registration_disallowed']
  18. ^login/$ [name='auth_login']
  19. ^logout/$ [name='auth_logout']
  20. ^password/change/$ [name='auth_password_change']
  21. ^password/change/done/$ [name='password_change_done']
  22. ^password/reset/$ [name='auth_password_reset']
  23. ^password/reset/confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$ [name='auth_password_reset_confirm']
  24. ^password/reset/complete/$ [name='password_reset_complete']
  25. ^password/reset/done/$ [name='password_reset_done']
  26. ^tinymce/
  27. ^media\/(?P<path>.*)$

The current URL, question/65.aspx, 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.