我想这个标题不言自明。
我一直在搜索如何更改在我的服务器上发生404时显示的页面。到目前为止,我所看到的一切都是使用Hooks来处理它,正如文档所说。
事实证明我使用的是pyramid_handlers,我不知道如何更改它。 有人愿意帮忙吗?
答案 0 :(得分:1)
from pyramid.view import notfound_view_config
@notfound_view_config(renderer='404.html')
def not_found(request):
return {}