[TYPO3-german] RealURL rendert Links immer als baseURL

Jennifer Koenig jenka13all at gmail.com
Wed Jul 13 15:04:29 CEST 2016


hallo,

hätte jemand eine Idee woran es liegen könnten, das RealURL rendert alle Links (mit fluid gebaut) als die BaseURL?

TYPO3 6.2.25
RealURL 2.0.14

mit einem Link so geschrieben:

 <f:link.page absolute="1" pageUid="31" noCacheHash="1">my link here</f:link.page>

wird nur den baseURL gerendert, z.B. http://mywebsite.de. D.h., alle Links werden so gerendert dass sie auf die Startseite hinweisen.

Mein config wird so geschrieben:

config {
  language = de
  locale_all = de_DE
  htmlTag_langKey = de
  baseURL = http://mywebsite.de/
  tx_realurl_enable = 1
}

RealURL sieht so aus:

$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl'] = array(
	'_DEFAULT' => array(
		'init' =>
			array(
				'enableCHashCache' => false,
				'appendMissingSlash' => 'ifNotFile,redirect',
				'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' => '1',
			),
		'postVarSets' => array(
			'_DEFAULT' => array(
				'controller' => array(
					'GETvar' => 'tx_myext1_pagecontent[controller]', 'noMatch' => 'bypass'
				),
				'searchController' => array(
					array(
						'GETvar' => 'tx_myext2_rating[controller]', 'noMatch' => 'bypass'
					)
				),
				'sortController' => array(
					array(
						'GETvar' => 'tx_myext3_packagelist[controller]',  'noMatch' => 'bypass'
					)
				),

				'page' => array(
					array(
						'GETvar' => 'tx_myext2_rating[@widget_0][currentPage]',
					),
				)

			),
		),

		'fileName' =>
			array(
				'defaultToHTMLsuffixOnPrev' => 1,
				'acceptHTMLsuffix' => 1,
				'index' =>
					array(
						'print' =>
							array(
								'keyValues' =>
									array(
										'type' => 98,
									),
							),
						'sitemap.xml' => array(
							'keyValues' => array(
								'type' => 808,
							),
						),
					),
			),
	)
);


in .htaccess ist es so:

RewriteEngine On
RewriteRule ^typo3$ - [L]
RewriteRule ^typo3/.*$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php

Woran könnte das Problem liegen?


More information about the TYPO3-german mailing list