[TYPO3-german] realurl: 'defaultToHTMLsuffixOnPrev'=>1

Stephan Bauer stephan_bauer at gmx.de
Fri Oct 8 11:25:40 CEST 2010


Hallo Alisha,

warum verwendest Du RealURL 1.7?
Aktuell ist die Version 1.10.

Hast Du den RealURL-Cache gelöscht?

Bei mir funktioniert diese Konfig:
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl'] = array (
	'_DEFAULT' => array (
		'init' => array (
			'enableCHashCache' => true,
			'appendMissingSlash' => 'ifNotFile,redirect[301]',
			'adminJumpToBackend' => true,
			'enableUrlDecodeCache' => true,
			'enableUrlEncodeCache' => true,
			'emptyUrlReturnValue' => '/',
		),
		'pagePath' => array (
			'type' => 'user',
			'userFunc' => 
'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
			'spaceCharacter' => '-',
			'languageGetVar' => 'L',
			'rootpage_id' => '38',
		),
		'fileName' => array (
			'defaultToHTMLsuffixOnPrev' => 1,
			'acceptHTMLsuffix' => 1,
       			'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,
					),
				),
		                'robots.txt' => array(
					'keyValues' => array(
						'type' => 201,
					),
				),
			),
		),
	),
);

Grüße

Stephan

schrieb Alisha:
> Hallo,
> ich habe ein Problem mit realUrl 1.7 und Typo3 4.3.3 (und
> danp_realurlconfigurator)
>
> Ich möchte die html-Endung erreichen bei den Pfadnamen und habe wie das
> oft dokumentiert wird mit 'defaultToHTMLsuffixOnPrev'=>1
> versucht, aber das greift nicht (realurl-cache habe ich gelöscht..)
> Es bleibt nachwievor: .../seite/unterseite/
>
> Hat jemand eine Idee?
> bin für jeden Tipp dankbar!
>
>
> hier der Code realurlconf.php:
>
> $TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array(
> 'init' => array(
> 'enableCHashCache' => 1,
> 'appendMissingSlash' => 'ifNotFile',
> 'enableUrlDecodeCache' => 1,
> 'enableUrlEncodeCache' => 1,
> 'respectSimulateStaticURLs' => 0,
> 'postVarSet_failureMode'=>'redirect_goodUpperDir',
> ),
> 'redirects_regex' => array (
>
> ),
> 'preVars' => array(
> array(
> 'GETvar' => 'no_cache',
> 'valueMap' => array(
> 'no_cache' => 1,
> ),
> 'noMatch' => 'bypass',
> ),
> array(
> 'GETvar' => 'L',
> 'valueMap' => array(
> 'en' => '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(
> // news archive parameters
> '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
> 'select_category' => array (
> array(
> 'GETvar' => 'tx_ttnews[cat]',
> ),
> ),
> // news articles and searchwords
> 'article' => 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]',
> ),
> ),
> ),
> ),
>
> 'fileName' => array(
> 'defaultToHTMLsuffixOnPrev'=>1,
> '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,
> ),
> ),
> ),
> ),
> );



More information about the TYPO3-german mailing list