Page not found (404)

Request Method: GET
Request URL: http://movie456.78680.net/video/movie-85/

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

  1. cms/
  2. [name='index']
  3. videos/
  4. <str:cate_id>/ [name='movie_cate_first']
  5. <str:cate_id>/page-<int:page_id>/ [name='movie_cate']
  6. video/<int:movie_id>/ [name='movie_detail']
  7. video/<int:movie_id>-<int:type_id>-<int:episode_id>/ [name='movie_play']
  8. t-<str:site_name>.html [name='hot_site']
  9. sitemap.xml [name='site_index']
  10. sitemap-movie-<int:list_id>.xml [name='site_movie_list']
  11. sitemap-site.xml [name='site_hot_site_list']
  12. ^media\/(?P<path>.*)$

The current path, video/movie-85/, 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.