是否可以像以前版本中的RealUrl一样,在TYPO3 9中为EXT:tt_news设置口语URL?
答案 0 :(得分:3)
您的站点配置中需要一个路由增强器。在TYPO3后端(在“站点配置”->“站点”下)创建项目后,项目中应该有一个config.yaml
。
在那之后,您可以在这里的文档(关于新闻)中找到一个有效的示例: Route Enhacer Documentation
例如,我目前已实现的工作路线增强器如下:
NewsPlugin:
type: Extbase
extension: News
plugin: Pi1
routes:
- { routePath: '/blog/{news_title}', _controller: 'News::detail', _arguments: {'news_title': 'news'} }
aspects:
news_title:
type: PersistedAliasMapper
tableName: 'tx_news_domain_model_news'
routeFieldName: 'path_segment'
routeValuePrefix: '/'
请记住,此配置除去了文档中的某些示例,并且不支持分页。
答案 1 :(得分:1)
您可以查看本手册“ Routing Enhancers and Aspects”