Page not found (404)

Request Method: GET
Request URL: http://www.99wonderlandpark.com.my/home/None

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

  1. ^favicon\.ico$ [name='favicon']
  2. ^ ^$ [name='home']
  3. ^aboutus/
  4. ^attractions/
  5. ^gallery/
  6. ^gettinghere/
  7. ^promotions/
  8. ^contactus/
  9. ^getticket/
  10. ^ ^career/$ [name='career']
  11. ^ ^career/(?P<pk>\d+)/job/$ [name='job_apply']
  12. ^admin/
  13. ^i18n/
  14. ^ ^events/$ [name='events']
  15. ^ ^events/(?P<pk>\d+)/detail/$ [name='events_detail']
  16. ^i18n/$ [name='set_language']
  17. ^rosetta/
  18. ^static/(?P<path>.*)$
  19. ^media/(?P<path>.*)$

The current path, home/None, 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.