Bug #16658
closedWrong information in _.htaccess for httpd.conf configuration
0%
Description
The RewriteRule for httpd.conf (around line 95) has "/TYPO3root" at the beginning. This is wrong.
Instead it should be the same as the rule for use in .htaccess (line 60):
RewriteRule ^(typo3/|t3lib/|fileadmin/|typo3conf/|typo3temp/|uploads/|favicon\.ico) - [L]
Sorry, found no correct project category for this bug.
(issue imported from #M4414)
Updated by Marc Bastian Heinrichs almost 18 years ago
Because the RewriteRule checks the URL-path and not the complete server-path.
for line 69/70- For httpd.conf, use this line instead of the next one:
- RewriteRule ^/TYPO3root/typo3$ /TYPO3root/typo3/index.php [L]
it's the same. The two extra rules for httpd.conf could be deleted.
Updated by Marc Bastian Heinrichs almost 18 years ago
Hi Michael,
saw you fixed another in .htaccess. Perhaps this is also one for you and v4.1?
greets
Marc Bastian
Updated by Chris topher over 14 years ago
Documentation from Apache:
http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#RewriteRule
Updated by Stefan Galinski over 12 years ago
The line is still there, so this should be valid.
Updated by Alexander Opitz over 11 years ago
- Status changed from New to Closed
This lines are commented out. They are hints, what you need to use, if you configure your TYPO3 CMS in the apache httpd.conf, then you have to replace "/TYPO3root" with the path to the root of your TYPO3 CMS installation.