Page not found (404)

Request Method: GET
Request URL: http://www.tekae.com/SetLang.aspx?lang=1&url=Profile.aspx

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

  1. admin/
  2. [name='homepage']
  3. company [name='company']
  4. projects [name='projects']
  5. about [name='about']
  6. contact [name='contact']
  7. contact/send
  8. city/ [name='location/index']
  9. city/<int:location_id> [name='location/view']
  10. city/<int:location_id>/<orderby> [name='location/view_sort']
  11. building/<int:building_id> [name='building']
  12. building/<int:building_id>/<orderby> [name='building']
  13. gallery/<int:appartment_id> [name='gallery']
  14. construction/<int:building_id> [name='construction']
  15. ^static/(?P<path>.*)$
  16. ^media/(?P<path>.*)$

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