[TYPO3-dev] Re: Realurl - new GET Params for readable URL

David Bruchmann davidbruchmann at gmail.com
Fri Mar 30 20:13:58 CEST 2018


Hi Steve,

In your question it's not clear if "personid" and "person" are from the tables fe_users, be_users or some content-tables.
But somehow you have to link to the corresponding table and determine how the current record is defined.

Like mentione on https://github.com/dmitryd/typo3-realurl/wiki/Configuration-reference#getvar this a look-up is looking like this:
'postVarSets' => array(
	'_DEFAULT' => array(
		'news' => array(
			array(
	'GETvar' => 'tx_news_pi1[news]',
	'lookUpTable' => array(
		'table' => 'tx_news_domain_model_news',
		'id_field' => 'uid',
		'alias_field' => 'title',
		'useUniqueCache' => true,
		'useUniqueCache_conf' => array(
			'strtolower' => true,
			'spaceCharacter' => '-',
		),
	),
),
)));

I haven't seen an installation with settings like you like to have but that's the approach I'd seek first.

Best,
David



More information about the TYPO3-dev mailing list