Plone有一个很好的 hack,它消除了 Zope2 附带的无聊的Zope 快速入门页面。它改变了这一点:
进入这个:
相关代码位于Products/CMFPlone/browser/admin.zcml
(https://github.com/plone/Products.CMFPlone/blob/master/Products/CMFPlone/browser/admin.zcml#L35):
<browser:page
for="OFS.interfaces.IApplication"
name="plone-overview"
class=".admin.Overview"
permission="zope.Public"
template="templates/plone-overview.pt"
/>
这就解释了为什么http://localhost:8080/plone-overview
呈现 plone-overview 模板,但是为什么/如何应用程序根目录,即http://localhost:8080
呈现相同的模板?