Typo3 9.5新闻-说起Urls-删除路径段

问题描述 投票:0回答:1

是否可以从新闻详细信息页面URL中删除“详细信息”页面路径段。我的配置像这样锁定

NewsPlugin:
    type: Extbase
    limitToPages:
      - 152
      - 153
      - 155
    extension: News
    plugin: Pi1
    routes:
      -
        routePath: '/{news_title}'
        _controller: 'News::detail'
        _arguments:
          news_title: news
    defaultController: 'News::detail'
    defaults:
      page: '0'
    requirements:
      page: \d+
    aspects:
      news_title:
        type: PersistedAliasMapper
        tableName: tx_news_domain_model_news
        routeFieldName: path_segment

所以URL像这样:

www.website.de/news/detail/newstitle

目标是

www.website.de/news/newstitle

非常感谢。

typo3 typo3-9.x tx-news
1个回答
0
投票

更改设置,以使列表视图和详细信息视图在同一页面上。否则,我认为无法从网址中删除此部分。看看description here

© www.soinside.com 2019 - 2024. All rights reserved.