Django如何自定義漂亮的404頁面

在templates 中添加404.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
 
<head>
 
<meta charset="UTF-8" http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
<title>404-對不起!您訪問的頁面不存在</title>
 
<style type="text/css">
 
.head404{ width:580px; height:234px; margin:50px auto 0 auto; background:url(https://www.daixiaorui.com/Public/images/head404.png) no-repeat; }
 
.txtbg404{ width:499px; height:169px; margin:10px auto 0 auto; background:url(https://www.daixiaorui.com/Public/images/txtbg404.png) no-repeat;}
 
.txtbg404 .txtbox{ width:390px; position:relative; top:30px; left:60px;color:#eee; font-size:13px;}
 
.txtbg404 .txtbox p {margin:5px 0; line-height:18px;}
 
.txtbg404 .txtbox .paddingbox { padding-top:15px;}
 
.txtbg404 .txtbox p a { color:#eee; text-decoration:none;}
 
.txtbg404 .txtbox p a:hover { color:#FC9D1D; text-decoration:underline;}
 
</style>
 
</head>
 
 
 
<body bgcolor="#494949">
 
    <div class="head404"></div>
 
    <div class="txtbg404">
 
  <div class="txtbox">
 
      <p>對不起,您請求的頁面不存在、或已被刪除、或暫時不可用</p>
 
    </div>
 
  </div>
 
</body>
 
</html>
</html>

修改settings.py

1 設置路徑:對TEMPLATES的’DIR’的值進行設置html

'DIRS': [os.path.join(BASE_DIR, 'templates')],

 BASE_DIR爲項目目錄

2 要想顯示自定義的404頁面, 還要設置python

DEBUG = False 
ALLOWED_HOSTS = ["*"]

好了,從新運行你的django項目,訪問不存在的目錄試一試吧。django

相關文章
相關標籤/搜索