程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

django設置404

編輯:Python

django404,500錯誤自定義頁面: 1.設置settings文件 DEBUG = False ALLOWED_HOSTS = ['127.0.0.1', 'localhost']或者 ALLOWED_HOSTS = ['*'] 2.配置urls文件 from django.conf.urls import handler404, handler500 handler404 = "login.views.page_not_found" (handler404 = "你的app.views.函數名") handler500 = "login.views.page_error" 3.在views文件中定義函數page_not_found和page_error 

from django.shortcuts import render_to_response def page_not_found(request):     return render_to_response('404.html') def page_error(request):     return render_to_response('500.html') 4.在app的templates下建立404.html和500.html文件(文件內就是你自定義的404或者500頁面


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved