Page not found (404)

Request Method: GET
Request URL: http://www.joyee.net/index.html

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

  1. admin/
  2. upload_temp_image/ [name='upload_temp_images']
  3. index/
  4. aboutus/
  5. aboutzy/
  6. activity/
  7. product/
  8. video/
  9. service/
  10. business/
  11. product/<int:id>/
  12. activity/<int:id>/
  13. ^upload/ [name='ckeditor_upload']
  14. ^browse/ [name='ckeditor_browse']
  15. ^media/(?P<path>.*)$
  16. ^media\/(?P<path>.*)$

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