Last active
November 1, 2018 08:18
-
-
Save ABooooo/b0cd9c194e6392047db4 to your computer and use it in GitHub Desktop.
realUrl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.htaccess | |
RewriteEngine On | |
RewriteRule ^typo3$ - [L] | |
RewriteRule ^typo3/.*$ - [L] | |
RewriteRule ^uploads/.*$ - [L] | |
RewriteRule ^fileadmin/.*$ - [L] | |
RewriteRule ^typo3conf/.*$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-l | |
# naechste Zeile auskommentieren, | |
# wenn .html Endung in RealURL eingestellt ist | |
RewriteRule (.*[^/])$ http://%{HTTP_HOST}/$1/ [L,R] | |
RewriteCond %{REQUEST_FILENAME}/index.html -f | |
RewriteRule / %{REQUEST_URI}/index.html [L] | |
RewriteCond %{REQUEST_FILENAME}/index.htm -f | |
RewriteRule / %{REQUEST_URI}/index.htm [L] | |
RewriteCond %{REQUEST_FILENAME}/index.php -f | |
RewriteRule / %{REQUEST_URI}/index.php [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-l | |
RewriteRule .* /index.php | |
.ts | |
baseURL = http://rka2015.rma-e-v.org/ | |
simulateStaticDocuments = 0 | |
tx_realurl_enable = 1 | |
prefixLocalAnchors = all | |
+ install realUrl extension in Typo3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$TYPO3_CONF_VARS['EXTCONF']['realurl'] = array( | |
// sitename | |
'_DEFAULT' => array( | |
// initialization | |
'init' => array( | |
'useCHashCache' => '0', | |
'enableCHashCache' => true, | |
'appendMissingSlash' => 'ifNotFile', | |
'enableUrlDecodeCache' => true, | |
'enableUrlEncodeCache' => true, | |
'emptyUrlReturnValue' => '/' | |
), | |
// first url rewriting segment | |
'preVars' => array( | |
array( | |
'GETvar' => 'L', | |
'valueMap' => array( | |
//'de' => 3, | |
'en' => 1, | |
), | |
'noMatch' => 'bypass', | |
//'valueDefault' => 'de', | |
), | |
), | |
// second url rewriting segment | |
'pagePath' => array( | |
'type' => 'user', | |
'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main', | |
'spaceCharacter' => '-', | |
'languageGetVar' => 'L', | |
'expireDays' => 30, | |
'rootpage_id' => 2 | |
), | |
// third url rewriting segment | |
'fixedPostVars' => array( | |
), | |
// forth url rewriting segment | |
'postVarSets' => array( | |
'_DEFAULT' => array( | |
/* | |
no_cache setting should not be used in preVars | |
@see http://dmitry-dulepov.com/article/do-not-use-no-cache-as-prevar.html | |
*/ | |
'nc' => array( | |
'type' => 'single', | |
'GETvar' => 'no_cache', | |
), | |
) | |
), | |
) | |
); | |
$byPassLVar = array( | |
array( | |
'GETvar' => 'L', | |
'valueMap' => array(), | |
'noMatch' => 'bypass' | |
) | |
); | |
$TYPO3_CONF_VARS['EXTCONF']['realurl']['Root_Local'] = $TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT']; | |
$TYPO3_CONF_VARS['EXTCONF']['realurl']['Root_Local']['pagePath']['rootpage_id'] = 2; | |
$TYPO3_CONF_VARS['EXTCONF']['realurl']['Root_Local']['preVars'] = $byPassLVar; | |
switch (t3lib_div::getIndpEnv('HTTP_HOST')) { | |
case 'Root_Local': | |
case 'Root_Local': | |
$_GET['L'] = 1; | |
break; | |
case 'Root_IP': | |
case 'Root_IP': | |
$_GET['L'] = 1; | |
break; | |
default: | |
$_GET['L'] = 1; | |
break; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment