How do I get this code from RealURL into the TYPO3 9.5 'Advanced Routing Configuration'?
With 'aspects' type 'PersistedAliasMapper', you can only map to the UID. But I want to map to another field! In my case over the 'event_id' field.
array(
'GETvar' => 'tx_extension_search[eventid]',
'lookUpTable' => array(
'table' => 'tx_extension_domain_model_event',
'id_field' => 'event_id',
'alias_field' => 'title_alias',
'useUniqueCache' => 0,
'useUniqueCache_conf' => array(
'strtolower' => 1,
'spaceCharacter' => '-'
)
),
),