0

在 django 中找不到实现页面并查看了文档404

我还没有找到页面未找到错误 ami 在这里做什么

在我的 urls 代码中,我完成了以下操作,

  url(r'^$', 'site_config.views.pagenotfound')

从 django.http 导入 Http404

 def pagenotfound(request):
   return render_to_response('polls/pagenotfound.html', {})
4

1 回答 1

3

你在django中处理404和500的方式是:默认情况下,在templates目录下,创建一个404.html

如果您需要自定义处理程序,只需将这些添加到 urls.py

handler404 = 'views.page_not_found_custom'    
handler500 = 'views.page_error_found_custom'    

以您想要的方式设计 404.html 页面

于 2012-08-29T14:39:04.203 回答