[TYPO3-german] Realurl - Fehler 404 für URLs ab 2. Menüebene
JCL - Johannes C. Laxander
jc at laxander.com
Mon Sep 6 14:56:40 CEST 2010
Ich habe den Fehler selbst gefunden, es war ein falscher Eintrag in der
.htaccess:
Nach Änderung von
RewriteRule ^[^/]*\.html$ /index.php
in
RewriteRule .*\.html$ /index.php
waren auch die Seiten ab der zweiten Menüebene erreichbar!
Gruß, Johannes.
> -----Ursprüngliche Nachricht-----
> Von: typo3-german-bounces at lists.typo3.org
> [mailto:typo3-german-bounces at lists.typo3.org] Im Auftrag von
> JCL - Johannes C. Laxander
> Gesendet: Sonntag, 5. September 2010 15:36
> An: 'German TYPO3 Userlist'
> Betreff: [TYPO3-german] Realurl - Fehler 404 für URLs ab 2. Menüebene
>
> Hallo,
>
> ich habe heute unter Typo3 Version 4.4.2 realurl (1.9.4) und
> URLTool (0.1.0) installiert.
>
> Die URLs werden richtig übersetzt, doch die Navigation
> funktioniert nur für die erste Menüebene. Ab der zweiten
> Menüebene bekomme ich den HTTP-Fehler
> 404 - "Seite nicht gefunden".
>
> Das habe ich alles schon ohne Erfolg ausprobiert:
>
> - Alles Caches gelöscht, inkl. realurl Cache
> - Temporäre Dateien gelöscht
> - In der realurl configuration die Standard rootpage_id (1)
> auf meine Rootpage Id angepasst
> - Automatische Kofiguration deaktiviert
>
> Hat irgend jemand eine Idee?
>
> Gruß, Johannes.
>
>
> Hier meine Konfigurationen:
>
> TSsetup
> -------
> config.simulateStaticDocuments = 0
> config.baseURL = www.ruof-pflanzenpflege.de
> config.tx_realurl_enable = 1
>
>
> .htaccess
> ---------
> RewriteEngine On
> #RewriteCond %{REQUEST_FILENAME} !-f
> #RewriteRule ^typo3$ typo3/index_re.php
> RewriteRule ^[^/]*\.html$ /index.php
>
>
> localconf.php
> -------------
> $TYPO3_CONF_VARS['EXT']['extConf']['realurl'] =
> 'a:5:{s:10:"configFile";s:33:"typo3conf/urltoolconf_realurl.ph
> p";s:14:"enabl
> eAutoConf";s:1:"1";s:14:"autoConfFormat";s:1:"0";s:12:"enableD
> evLog";s:1:"0"
> ;s:19:"enableChashUrlDebug";s:1:"0";}';
>
>
> urltoolconf_realurl.php
> -----------------------
> <?php
> /**
> *
> * aeUrlTool default realurl configuration
> * based on realurl-configuration of news.typo3.org
> * http://news.typo3.org/about/realurl-configuration/
> *
> */
> $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl'] = array (
> '_DEFAULT' => array (
> 'init' => array (
> 'enableCHashCache' => '1',
> 'appendMissingSlash' => 'ifNotFile',
> 'enableUrlDecodeCache' => '1',
> 'enableUrlEncodeCache' => '1',
> ),
> 'redirects' => array (
> ),
> 'preVars' => array (
> '0' => array (
> 'GETvar' => 'no_cache',
> 'valueMap' => array (
> 'nc' => '1',
> ),
> 'noMatch' => 'bypass'
> ),
> '1' => array (
> 'GETvar' => 'L',
> 'valueMap' => array (
> 'de' => '0',
> 'en' => '1',
> ),
> 'noMatch' => 'bypass',
> ),
> '2' => array (
> 'GETvar' => 'lang',
> 'valueMap' => array (
> 'de' => 'de',
> 'en' => 'en',
> ),
> 'noMatch' => 'bypass',
> ),
> ),
> 'pagePath' => array (
> 'type' => 'user',
> 'userFunc' =>
> 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advance
d->main',
> 'spaceCharacter' => '-',
> 'languageGetVar' => 'L',
> 'expireDays' => '7',
> 'rootpage_id' => '34',
> ),
> 'fixedPostVars' => array (
> ),
> 'postVarSets' => array (
> '_DEFAULT' => array (
> 'archive' => array (
> '0' => array (
> 'GETvar' => 'tx_ttnews[year]',
> ),
> '1' => 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',
> ),
> ),
> ),
> 'browse' => array (
> '0' => array (
> 'GETvar' => 'tx_ttnews[pointer]',
> ),
> ),
> 'select_category' => array (
> '0' => array (
> 'GETvar' => 'tx_ttnews[cat]',
> ),
> ),
> 'article' => array (
> '0' => 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' => '-',
> ),
> ),
> ),
> '1' => array (
> 'GETvar' => 'tx_ttnews[swords]',
> ),
> ),
> ),
> ),
> 'fileName' => array (
> //
> // if you don't want .html-URLs set the following to "false" (e.g.
> 'defaultToHTMLsuffixOnPrev' => false,)
> // then you get http://www.yourdomain.com/imprint/ instead of
> http://www.yourdomain.com/imprint.html
> //
> 'defaultToHTMLsuffixOnPrev' => true,
> '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',
> ),
> ),
> ),
> ),
> ),
> );
> ?>
>
>
> _______________________________________________
> TYPO3-german mailing list
> TYPO3-german at lists.typo3.org
> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-german
>
More information about the TYPO3-german
mailing list