我正在寻找一种设置来实现以下口述网址:
URL代替了
如何删除详细路径段并将extbase插件保留在PID2 / detail上
答案 0 :(得分:2)
您的问题从未提及要配置哪个扩展,也从未提供您正在使用的示例。
因此,我只是发布用于扩展新闻的配置(tx_news,而不是tt_news),并且我认为它应该像您期望的那样工作:
routeEnhancers:
NewsPlugin:
type: Extbase
extension: News
plugin: Pi1
routes:
-
routePath: '/{news_title}'
_controller: 'News::detail'
_arguments:
news_title: news
defaultController: 'News::detail'
aspects:
news_title:
type: PersistedAliasMapper
tableName: tx_news_domain_model_news
routeFieldName: path_segment
如果您使用其他扩展名,则必须相应地调整相应的部分。
答案 1 :(得分:0)
您可以在TYPO3官方文档中阅读有关“ Routing Enhancers and Aspects”的信息