标签: django apache .htaccess custom-error-handling
我创建了一个Django项目,但我使用Apache作为网络服务器。任何人都可以告诉我如何将错误代码(如404或500或400)重定向到自定义错误html页面而不是在页面上收到标准错误消息以防发生错误?
答案 0 :(得分:0)
只需在404.html目录中创建自定义 400.html,500.html和templates即可。现在,只要发生错误,就会呈现这些custom错误页面。
404.html
400.html
500.html
templates
custom