在TYPO3版本9.5.11中,我希望使用GET参数重写自己的URL。 URL看起来像这样:
最后,URL应该是:
是的,我不需要所有的GET参数,我想将其删除。
现在我在config.yaml文件中使用routeEnhancers。
设置看起来像这样,第一步要重写网址:
https://www.website.de/my-page/logintype/dc/code/state/uniquekey/login_id/dc_timestamp
我的路线增强器:
routeEnhancers:
MyCustomRewrite:
type: Simple
routePath: '{logintype}/{dc}/{code}/{state}/{uniquekey}/{login_id}/{dc_timestamp}'
requirements:
logintype: '. *'
dc: '. *'
code: '. *'
state: '. *'
uniquekey: '. *'
login_id: '. *'
dc_timestamp: '. *'
但是,重写不起作用。可能是什么问题?