How can I add a trailing slash to TYPO3 v9 URLs?

后端 未结 4 448
庸人自扰
庸人自扰 2021-01-31 22:51

When updating from TYPO3 8.7 to TYPO3 9.5 you might drop the realurl extension in favor for the new routing feature.

But you might notice, that realurl appended a / to a

4条回答
  •  后悔当初
    2021-01-31 23:11

    You can use the PageTypeEnhancer for mapping &type parameter in your site configuration (config.yaml file):

    routeEnhancers:
      PageTypeSuffix:
        type: PageType
        default: '/'
        index: ''
        map:
          '/': 0
    

提交回复
热议问题