我有一个应用,其中/index
路径具有特殊含义。我不希望路径/
与/index
同义。现在,当我访问/
时,cherrypy会在内部将我重定向到index
视图(对象方法)。
如何将路径/
路由到index
以外的某个视图?例如,就我而言,我希望它与/status
同义。
答案 0 :(得分:1)
您应该能够mount /
到与/status
相同的位置,您可能在代码中的某个位置可能有这样的行:
cherrypy.tree.mount(Status(), '/status', config)
将其更改为以下内容:
status = Status()
cherrypy.tree.mount(status, '/status', config)
cherrypy.tree.mount(status, '/', config)