TYPO3: RealURL mehrsprachig nutzen

Die Extension RealURL erzeugt aus den üblichen Urls (index.php?id=82) eine schöne Verzeichnis-Struktur. Dies lässt sich auch bei Seiten mit mehreren Sprachen nutzen.

Der folgende Ausschnitt aus der Datei typo3conf/localconf.php ist nach viel Handbuch lesen und Recherche entstanden. Für die Extensions tt_news (News und Kategorien) und sr_feuserregister gelten diese Einstellungen:

$TYPO3_CONF_VARS[‘EXTCONF’][‘realurl’] = array(
‘_DEFAULT’ => array(
‘init’ => array(
‘enableCHashCache’ => 1,
‘appendMissingSlash’ => ‘ifNotFile’,
‘enableUrlDecodeCache’ => 1,
‘enableUrlEncodeCache’ => 1,
),
‘preVars’ => array(
/* realurl mit sprachwahl */
array(
‘GETvar’ => ‘L’,
‘valueMap’ => array(
/* fuer sprachwechsel im context */
‘en’ => ‘1’,
),
‘noMatch’ => ‘bypass’,
),
/* tt_news */
array(
‘GETvar’ => ‘no_cache’,
‘valueMap’ => array(
‘nc’ => 1,
),
‘noMatch’ => ‘bypass’,
),
),
/* realurl mit sprachwahl – start */
‘pagePath’ => array(
‘type’ => ‘user’,
‘userFunc’ => ‘EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main’,
‘spaceCharacter’ => ‘-‘,
‘languageGetVar’ => ‘L’,
‘expireDays’ => 7,
‘disablePathCache’ => 0,
‘rootpage_id’ => 20,
),
/* realurl mit sprachwahl – ende */
‘postVarSets’ => array(
‘_DEFAULT’ => array(
/* tx_srfeuserregister_pi1 */
‘user’ => array(
array(
‘GETvar’ => ‘tx_srfeuserregister_pi1[regHash]’
)
),
/* tt_news archive – start */
‘archive’ => array(
array(
‘GETvar’ => ‘tx_ttnews[year]’ ,
),
array(
‘GETvar’ => ‘tx_ttnews[month]’ ,
‘valueMap’ => array(
‘january’ => ’01’,
‘february’ => ’02’,
‘march’ => ’03’,
‘april’ => ’04’,
‘may’ => ’05’,
‘june’ => ’06’,
‘july’ => ’07’,
‘august’ => ’08’,
‘september’ => ’09’,
‘october’ => ’10’,
‘november’ => ’11’,
‘december’ => ’12’,
)
),
),
// news pagebrowser
‘browse’ => array(
array(
‘GETvar’ => ‘tx_ttnews[pointer]’,
),
),
// news categories
‘cat’ => array (
array(
‘GETvar’ => ‘tx_ttnews[cat]’,
‘lookUpTable’ => array(
‘table’ => ‘tt_news_cat’,
‘id_field’ => ‘uid’,
‘alias_field’ => ‘title’,
‘addWhereClause’ => ‘ AND NOT deleted’,
‘useUniqueCache’ => 1,
‘useUniqueCache_conf’ => array(
‘strtolower’ => 1,
‘spaceCharacter’ => ‘-‘,
),
),
),
),
// news articles and searchwords
‘get’ => array(
array(
‘GETvar’ => ‘tx_ttnews[tt_news]’,
‘lookUpTable’ => array(
‘table’ => ‘tt_news’,
‘id_field’ => ‘uid’,
‘alias_field’ => ‘title’,
‘addWhereClause’ => ‘ AND NOT deleted’,
‘useUniqueCache’ => 1,
‘useUniqueCache_conf’ => array(
‘strtolower’ => 1,
‘spaceCharacter’ => ‘-‘,
),
),
),
array(
‘GETvar’ => ‘tx_ttnews[swords]’,
),
),
/* tt_news – ende */
)
),
/* tt_news – start */
// configure filenames for different pagetypes
‘fileName’ => array(
‘index’ => array(
‘rss.xml’ => array(
‘keyValues’ => array(
‘type’ => 100,
),
),
‘rss091.xml’ => array(
‘keyValues’ => array(
‘type’ => 101,
),
),
‘rdf.xml’ => array(
‘keyValues’ => array(
‘type’ => 102,
),
),
‘atom.xml’ => array(
‘keyValues’ => array(
‘type’ => 103,
),
),
),
),
/* tt_news – ende */
),
);

Realurl mehrere Domains
RealURL mehrsprachig: pro Domain eine Sprache ohne Get-Parameter / preVars

Author: admirableadmin

Hello World! Ich bin Andreas Peichert und entwickle und programmiere Software seit 2000. Zurzeit arbeite ich als Senior Solution Architect.

Leave a Reply

Your email address will not be published. Required fields are marked *