Einzelnen Beitrag anzeigen
  #3  
Alt 09.03.05, 11:44
MoRpH2k2 MoRpH2k2 ist offline
Forum Zuschauer
 
Registriert seit: 09.03.05
Beiträge: 10

Hier der Inhalt meiner Localconf für realurl:
habe das einfach vom Tutorial übernommen.
Code:
 $TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array(
     'init' => array(
         'enableCHashCache' => 'TRUE',
        'respectSimulateStaticURLs' => 'TRUE',
         'appendMissingSlash' => 'ifNotFile',
         'enableUrlDecodeCache' => 'TRUE',
         'enableUrlEncodeCache' => 'TRUE',
     ),
     'redirects' => array(
         'blog/' => 'home/blog/',
     ),
     'preVars' => array(
         array(
             'GETvar' => 'no_cache',
             'valueMap' => array(
                 'no_cache' => 1,
             ),
             'noMatch' => 'bypass',
         ),
     ),
     'pagePath' => array(
         'type' => 'user',
         'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_
vanced->main',
         'spaceCharacter' => '-',
         'expireDays' => 30
     ),
     'fixedPostVars' => array(
         'newsdetails' => array(
             array(
                    'GETvar' => 'cHash',
             ),
             array(
                 'GETvar' => 'backPID',
             ),
             array(
                 'GETvar' => 'tt_news',
                 'lookUpTable' => array(
                     'table' => 'tt_news',
                     'id_field' => 'uid',
                     'alias_field' => 'title',
                     'addWhereClause' => ' AND NOT deleted',
                     'maxLenght' => 15,
                     'useUniqueCache' => 'TRUE',
                     'useUniqueCache_conf' => array(
                         'strtolower' => 'TRUE',
                         'spaceCharacter' => '-',
                     ),
                 ),
             ),
             array(
                 'GETvar' => 'pS',
             ),
             array(
                 'GETvar' => 'pL',
             ),
             array(
                 'GETvar' => 'arc',
                 'valueMap' => array(
                     'archiv' => 1,
                 ),
             ),
         ),
         '31' => 'newsdetails',
         'newsindex' => array(
             array(
                 'GETvar' => 'cHash',
             ),
             array(
                 'GETvar' => 'backPID',
             ),
             array(
                 'GETvar' => 'begin_at',
             ),
         ),
         '20' => 'newsindex',
     ),
 );
Dies ist der Inhalt meiner _.htacces :

Code:
 RewriteEngine On
RewriteRule ^typo3$ - [L]
RewriteRule ^typo3/.*$ - [L]
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php
Folgende Serverstruktur ist vorhanden:
Code:
/var/www/ <-- hier landet man bei Eingabe von http://www.hostname.tld:8087
/var/www/daniel/ <-- hier ist Typo3 drin
/var/www/daniel/typo3/ <-- dort ist das Adminpanel
Habe ich etwas vergessen oder etwas falsch gemacht ?
Mit Zitat antworten