Page not found (404)

Request Method: GET
Request URL: https://avediolinks.com/member/profile/

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

  1. admin/
  2. ckeditor/
  3. [name='home']
  4. product/<str:slug> [name='category']
  5. products/<int:id> [name='product']
  6. seed-users/ [name='seed_users']
  7. seed-user-apply/ [name='seed_user_apply']
  8. seed-user-send/ [name='seed_user_send']
  9. support/ [name='support']
  10. about/ [name='about']
  11. sales/ [name='sales']
  12. news/<str:slug> [name='news']
  13. raffle/ [name='raffle']
  14. ^media\/(?P<path>.*)$

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