Django 自定义404页面

目录结构

特别说明:我的views.py 已做了拆分

myproject/
   	myproject/
	  	settings.py
	  	urls.py
	myapp/
		templates/
			myapp/
				404.html
		views/
			index.py
	

step1

在myapp目录下创建文件夹templates/myapp, 创建404.html 模板

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
        <title>404 not found</title>
    </head>
    <body>
        <h1>
            页面不存在
        </h1>
    </body>
</html>

step2

修改 myproject/settings.py

DEBUG = True 更改为 DEBUG = False
ALLOWED_HOSTS = [] 更改为 ALLOWED_HOSTS = ['*']

step3

在 myapp/views/Index.py 增加函数page_not_found

from django.shortcuts import render

#少了参数exception,服务器报错:The custom handler404 view 'myapp.views.Index.page_not_found' does not take the correct number of arguments (request, exception)
def page_not_found(request, exception):
    return render(request, 'myapp/404.html', status=404)

记得添加 HTTP状态码 status=404

step4

在myproject/urls.py 添加 handler404

import myapp

urlpatterns = [
    path('admin/', admin.site.urls),
]
handler404 = myapp.views.Index.page_not_found

在浏览器中输入不存在的url 路径,则会显示自定义的404页面

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值