Page not found (404)

Request Method: GET
Request URL: https://www.weasy.net/profile.php?ID=1

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

  1. admin/
  2. [name='main']
  3. sign-up/ [name='signup']
  4. delete/ [name='deleteChat']
  5. logout/ [name='logout']
  6. login/ [name='login']
  7. cookbook/ [name='cookbook']
  8. recipe/<int:recipe_id>/ [name='view_recipe']
  9. allrecipe/ [name='scrape_recipe']
  10. add_recipe/ [name='add_recipe']
  11. ^static/(?P<path>.*)$

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