Bolt CMS 静态 html 页面获取 404

Bolt CMS Static html page gets 404

最近我开始使用 Bolt CMS。我用 Angular JS 制作了一个主题,但我想使用一些静态页面。正如他们在文档 https://docs.bolt.cm/3.0/templates/templates-routes#automatic-template-selection 中提到的,我已将我的 link 添加到 routing.yml

示例:

oldpages:
  path:           /applications/forms/chakka/ng/templates/core.html
  defaults:       { _controller: 'Bolt\Controllers\Frontend::record', 'contenttypeslug': 'page' }
  requirements:
    slug:       '[a-z0-9-_]+'

但我得到一个

Exception --> Symfony \ Component \ HttpKernel \ Exception \ HttpException

页面/未找到。

我真的是 bolt CMS 的新手。有人知道为什么吗?

提前致谢!

我想你想要的是模板绑定:

templatebinding:
    path: /mytemplate
    defaults: { _controller: 'Bolt\Controllers\Frontend::template', template: 'mytemplate' }