Page not found (404)

Request Method: GET
Request URL: http://ruhofchina.com/goods/12/

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

  1. ^admin/
  2. ^ueditor/
  3. ^$ [name='home']
  4. ^goods/(?P<ctype>\w+)/(?P<cid>\d+)/$ [name='goodsList']
  5. ^product/(?P<pk>\d+)/$ [name='goodsArticle']
  6. ^news/(?P<pk>\d+)/$ [name='newsList']
  7. ^article/(?P<pk>\d+)/$ [name='newsArticle']
  8. ^aboutus/(?P<pk>\d+)/$ [name='aboutUs']
  9. ^contact/(?P<pk>\d+)/$ [name='contactMe']
  10. ^contactus/ [name='contactus']
  11. ^search/(?P<stype>\w+)/$ [name='search']
  12. ^education/ [name='education']
  13. ^comments/ [name='comments']
  14. ^thumbup/ [name='thumbup']
  15. ^download/(?P<pk>\d+)/$ [name='downloadFile']
  16. ^miniapp/
  17. ^getgoodscolumn/$ [name='getgoodscolumn']
  18. ^getgoodslist/$ [name='getgoodslist']
  19. ^getgoodsdetail/$ [name='getgoodsdetail']
  20. ^getgoodsdownloads/$ [name='getgoodsdownloads']
  21. ^getsearch/$ [name='getsearch']
  22. ^media/(?P<path>.*)$

The current URL, goods/12/, 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.