Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Django 404 (页面未找到)


页面未找到

如果您尝试访问不存在的页面(404 错误),Django 会将您引导到处理 404 错误的内置视图。

您将在本章后面学习如何自定义此 404 视图,但首先,请尝试请求一个不存在的页面。

在浏览器窗口中,在地址栏中键入 127.0.0.1:8000/masfdfg/

您将得到两种结果之一

1:

2:

如果您得到第一个结果,您将被引导到内置的 Django 404 模板。

如果您得到第二个结果,那么您的设置中 DEBUG 设置为 True,您必须将其设置为 False 才能被引导到 404 模板。

这在 settings.py 文件中完成,该文件位于项目文件夹中,在本例中是 my_tennis_club 文件夹,您还必须在其中指定项目运行的 host 名。

示例

将 debug 属性设置为 False,并允许项目从本地 host 运行

my_tennis_club/my_tennis_club/settings.py:

.
.
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False

ALLOWED_HOSTS = ['*']
.
.

重要:当 DEBUG = False 时,Django 要求您指定允许此 Django 项目运行的 host。

在生产环境中,这应该替换为适当的域名

ALLOWED_HOSTS = ['yourdomain.com']

在浏览器窗口中,在地址栏中键入 127.0.0.1:8000/masfdfg/,您将得到内置的 404 模板


自定义 404 模板

Django 将在 templates 文件夹中查找名为 404.html 的文件,并在出现 404 错误时显示它。

如果不存在这样的文件,Django 会显示你在上面示例中看到的“Not Found”。

要自定义此消息,您只需在 templates 文件夹中创建一个文件,将其命名为 404.html,并用您想要的任何内容填充它

my_tennis_club/members/templates/404.html:

<!DOCTYPE html>
<html>
<title>错误地址</title>
<body>

<h1>糟糕!</h1>

<h2>我找不到您请求的文件!</h2>

</body>
</html>

在浏览器窗口中,在地址栏中键入 127.0.0.1:8000/masfdfg/,您将得到自定义的 404 模板



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.