Page not found (404)

Request Method: GET
Request URL: https://hellomrmag.com/shop.

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

  1. ^ ^$ [name='stories']
  2. ^ ^search/$ [name='search']
  3. ^ ^tag/(?P<slug>[-\d\w]+)/$ [name='tag']
  4. ^ ^category/(?P<slug>[-\d\w]+)/$ [name='category']
  5. ^magazine/
  6. ^account/
  7. ^a/
  8. ^ ^recover/(?P<signature>.+)/$ [name='password_reset_sent']
  9. ^ ^recover/$ [name='password_reset_recover']
  10. ^ ^reset/done/$ [name='password_reset_done']
  11. ^ ^reset/(?P<token>[\w:-]+)/$ [name='password_reset_reset']
  12. ^api/stories/$
  13. login/$ [name='login']
  14. logout/$ [name='logout']
  15. ^djadmin/
  16. (?P<slug>[-\w\d]+)/$ [name='router']

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