Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 django 1.4.1 中有一组 url 模式。当用户尝试不在列表中的 url [用户这样做] 时,我希望能够引发 404。
不知道该怎么做。可能是我没有正确阅读文档。
PS:我在设置中将 DEBUG 设置为 False,并且任何尝试无效 url 都会说“服务器发生错误”
感谢和问候 Prabhakar S
您需要编写404.html模板,当您设置DEBUG=False.
404.html
DEBUG=False
同样,您可能希望编写500.html来处理任何服务器错误。
500.html
更多参考:编写 404 视图