CherryPy索引路径

时间:2012-04-10 20:00:57

标签: python cherrypy

我有一个应用,其中/index路径具有特殊含义。我不希望路径//index同义。现在,当我访问/时,cherrypy会在内部将我重定向到index视图(对象方法)。

如何将路径/路由到index以外的某个视图?例如,就我而言,我希望它与/status同义。

1 个答案:

答案 0 :(得分:1)

您应该能够mount /到与/status相同的位置,您可能在代码中的某个位置可能有这样的行:

cherrypy.tree.mount(Status(), '/status', config)

将其更改为以下内容:

status = Status()
cherrypy.tree.mount(status, '/status', config)
cherrypy.tree.mount(status, '/', config)