German  |  English
Suche:
Sie sind hier: Tutorial Typo3 » Frontend RealURL

RealURL

Extension RealURL einbinden.

Code TypoScript Root Template Setup
# Realurl
config.simulateStaticDocuments = 0
config.baseURL = http://www.deine_domain.de/ 
config.tx_realurl_enable = 1
config.prefixLocalAnchors = all
Code .htaccess im Hauptverzeinis
RewriteEngine On
RewriteBase /dein_Ordner/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php
RewriteRule  ^[^/]*\.html$ index.php 
RewriteRule ^/(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)/ - [L]
RewriteRule ^/(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)/.*$ - [L]
Code typo3conf/localconf.php
<?php
 
$TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tstemplate.php']['linkData-PostProc']['tx_realurl'] = 'EXT:realurl/class.tx_realurl.php:&tx_realurl->encodeSpURL';
$TYPO3_CONF_VARS['SC_OPTIONS']['tslib/class.tslib_fe.php']['checkAlternativeIdMethods-PostProc']['tx_realurl'] = 'EXT:realurl/class.tx_realurl.php:&tx_realurl->decodeSpURL';
$TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['clearPageCacheEval']['tx_realurl'] = 'EXT:realurl/class.tx_realurl.php:&tx_realurl->clearPageCacheMgm';
 
$TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['clearAllCache_additionalTables']['tx_realurl_urldecodecache'] = 'tx_realurl_urldecodecache';
$TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['clearAllCache_additionalTables']['tx_realurl_urlencodecache'] = 'tx_realurl_urlencodecache';
 
$TYPO3_CONF_VARS['FE']['addRootLineFields'].= ',tx_realurl_pathsegment';
 
$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(
                'de' => '0',
                'en' => '1',
                'ar' => '2',
                ),
        'valueDefault' => 'de',
      ),
    ),
    
    'pagePath' => array(
      'type' => 'user',
      'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
      'spaceCharacter' => '-',
      'languageGetVar' => 'L',
      'expireDays' => 0,
      'rootpage_id' => 1,
      'firstHitPathCache' => 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]',
        ),
      ),
    ),            
  ),
      
 
  // configure filenames for different pagetypes
  'fileName' => array(
      'defaultToHTMLsuffixOnPrev' => 1,
      'index' => array(
          'print.html' => array(
              'keyValues' => array(                  
                  'type' => 98,
              ),
          ),
          '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,
              ),
          ),
      ),
  ),
);
?>

Tip: Code auslagern!

Code inkludieren in typo3conf/localconf.php
<?php
include(PATH_typo3conf.'realurlconf.php');
?>