From 21fb92fd9daa308d89f5dcaa06cddf2c3724e130 Mon Sep 17 00:00:00 2001 From: Eric Chavaillaz <eric.chavaillaz@gmail.com> Date: Thu, 23 Jan 2014 09:53:30 +0100 Subject: [PATCH] [TASK] Remove t3lib from the example .htaccess file Since removing the t3lib folder in TYPO3 6.2, there is no more reason to keep reference to this folder in the example .htaccess file. Resolves: #55265 Releases: 6.2 Change-Id: Ic7f2cff96186551b2aa08c9e785f42c4f8612fce Reviewed-on: https://review.typo3.org/27017 Reviewed-by: Henrik Ziegenhain Reviewed-by: Oliver Klee Reviewed-by: Georg Ringer Tested-by: Georg Ringer --- _.htaccess | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_.htaccess b/_.htaccess index 79d8b0719cbd..d1d11d4bfc78 100644 --- a/_.htaccess +++ b/_.htaccess @@ -113,8 +113,8 @@ RewriteRule ^typo3conf/ext/[^/]+/Resources/Private/ - [F] # Stop rewrite processing, if we are in the typo3/ directory. # For httpd.conf, use this line instead of the next one: -# RewriteRule ^/TYPO3root/(typo3/|t3lib/|fileadmin/|typo3conf/|typo3temp/|uploads/|favicon\.ico) - [L] -RewriteRule ^(typo3/|t3lib/|fileadmin/|typo3conf/|typo3temp/|uploads/|favicon\.ico) - [L] +# RewriteRule ^/TYPO3root/(typo3/|fileadmin/|typo3conf/|typo3temp/|uploads/|favicon\.ico) - [L] +RewriteRule ^(typo3/|fileadmin/|typo3conf/|typo3temp/|uploads/|favicon\.ico) - [L] # If the file/symlink/directory does not exist => Redirect to index.php. # For httpd.conf, you need to prefix each '%{REQUEST_FILENAME}' with '%{DOCUMENT_ROOT}'. -- GitLab