Und er setzte sich und rief die Zwölf und sprach zu ihnen: So jemand will der Erste sein, der soll der Letzte sein vor allen und aller Knecht.
Markus 9:35
autor | |
10-04-13 10:28:39 | realurl Unterstützung |
David Voigt |
Es wäre schön, wenn eine vollständige (!) realurl-Konfiguration mit dem Shop kommen würde. Als Anhaltspunkt, hier ist meine. Was diese noch nicht beherrscht, ist: - der Pagebrowser (begin at) wird noch nicht korrekt in URL umgesetzt - die back_pid taucht leider noch an vielen Stellen in der URL auf, aus Gründen der SEO wäre es schön, wenn man sie loswerden könnte.. [code]$TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array( 'init' => array( 'enableCHashCache' => 1, 'appendMissingSlash' => 'ifNotFile', 'enableUrlDecodeCache' => 1, 'enableUrlEncodeCache' => 1, 'respectSimulateStaticURLs' => 0, 'postVarSet_failureMode'=>'redirect_goodUpperDir', ), 'preVars' => array( array( 'GETvar' => 'no_cache', 'valueMap' => array( 'nc' => 1, ), 'noMatch' => 'bypass' ), ), 'pagePath' => array( 'type' => 'user', 'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main', 'spaceCharacter' => '-', 'languageGetVar' => 'L', 'expireDays' => 7, 'rootpage_id' => 1, ), 'postVarSets' => array( '_DEFAULT' => array( 'sword' => array( array( 'GETvar' => 'tt_products[sword]', 'valueMap' => array( 'tt_products[sword]' => 1, ), 'noMatch' => 'bypass' ), ), ), ), 'fixedPostVars' => array( '_DEFAULT' => array( // tt_products categories array( 'GETvar' => 'tt_products[cat]', 'lookUpTable' => array( 'table' => 'tt_products_cat', 'id_field' => 'uid', 'alias_field' => 'title', 'addWhereClause' => ' AND NOT deleted', 'useUniqueCache' => 1, 'useUniqueCache_conf' => array( 'strtolower' => 1, 'spaceCharacter' => '_' ), ), ), // tt_products products array( 'GETvar' => 'tt_products[product]', 'lookUpTable' => array( 'table' => 'tt_products', 'id_field' => 'uid', 'alias_field' => 'title', 'addWhereClause' => ' AND NOT deleted', 'useUniqueCache' => 1, 'useUniqueCache_conf' => array( 'strtolower' => 1, 'spaceCharacter' => '_' ), ), ), ), ), ); [/code] |
< Zurück zum Forum |