Pylons - 将常规的404 Not Found页面更改为自定义页面

时间:2010-04-24 23:38:51

标签: python http-status-code-404 pylons

如何将Pylons生成的常规404页面更改为我自己定制的404页面?

提前致谢, 约翰

2 个答案:

答案 0 :(得分:3)

据我所知,您必须在appname / controllers / error.py中编辑ErrorController并更改“document”方法。

def document(self):
    return render('/my_errors/blah.mako')

阅读详情:http://wiki.pylonshq.com/display/pylonsdocs/Error+Documents#changing-the-template

答案 1 :(得分:0)