Page not found (404)

Request Method: GET
Request URL: http://mplat.co.kr/archive

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

  1. admin/
  2. [name='index']
  3. en/ [name='index_en']
  4. aboutus [name='aboutus']
  5. en/aboutus [name='aboutus_en']
  6. history [name='history']
  7. en/history [name='history_en']
  8. contactus [name='contactus']
  9. en/contactus [name='contactus_en']
  10. product_list [name='product_list']
  11. en/product_list [name='product_list_en']
  12. product_detail/<product_slug>/ [name='product_detail']
  13. en/product_detail/<product_slug>/ [name='product_detail_en']
  14. board_list [name='board_list']
  15. board_detail/<int:id>/ [name='board_detail']
  16. en/

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