No I didn't with the first try. After looking at the original rewrite rules
within in the src file I amended your configuration, but also moved directory
typo3 to the root dir. That's what is working for me:
### Begin: Rewrite stuff ###
<IfModule mod_rewrite.c>
# Enable URL rewriting
RewriteEngine On
RewriteBase /
# Stop rewrite processing if we are in the typo3/ directory
RewriteRule
^(typo3|t3lib|tslib|fileadmin|typo3conf|typo3temp|uploads|showpic\.php|favicon\.ico)/
- [L]
# Redirect http://mysite/typo3 to http://mysite/typo3/index_re.php
# and stop the rewrite processing
RewriteRule ^/typo3$ /var/lib/typo3-dummy/typo3/index_re.php [L]
# If the file/symlink/directory does not exist => Redirect to index.php
# Important note: If you copy/paste this into httpd.conf instead
# of .htaccess you will need to add '%{DOCUMENT_ROOT}' left to each
# '%{REQUEST_FILENAME}' part.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
# Main URL rewriting.
# If you use Windows and SimulateStaticDocuments do not work, try
adding a
# slash (/) right before 'index.php' below.
# The example shows how to rewrite only *.html and *.pdf files to
index.php
# This may be helpful when using an extension that can generate PDF
files
# on the fly.
# Example: RewriteRule .*\.(html|pdf)$ index.php [L]
# For httpd.conf, use this line instead of the next one that has no '#':
RewriteRule .* /var/lib/typo3-dummy/index.php [L]
### End: Rewrite stuff ###
Rouven Homann
cimt objects ag
Burchardstraße 17
20095 Hamburg
Telefon +49(40)-53302-0
Telefax +49(40)-53302-22
Email: [EMAIL PROTECTED]
Web: http://www.cimt.de <http://www.cimt.de/>
PGP-Fingerprint: 800C 19AF BCD1 416E B322 59E2 39DE C94A 1574 172F
----------------------------------------------------------------------------
Amtsgericht 20355 Hamburg, Handelsregister hrb 75760
Vorstand: Stefan Mann (Vorsitzender), Christian Kreutzmann
Aufsichtsratvorsitzender: Christian Gottsmann
________________________________
Von: Christian Welzel [mailto:[EMAIL PROTECTED]
Gesendet: So 9.3.2008 08:39
An: Rouven Homann; [EMAIL PROTECTED]
Betreff: Re: Bug#421205: Confirmed with lenny
Am Donnerstag 07 Februar 2008 schrieb Rouven Homann:
> I can confirm this error message with the latest lenny package version.
Did you move the typo3 installation from http://server/typo3 http://server/ ?
What i mean... did you change the document root of the webserver?
--
MfG, Christian Welzel
GPG-Key: http://www.camlann.de/key.asc
Fingerprint: 4F50 19BF 3346 36A6 CFA9 DBDC C268 6D24 70A1 AD15