Skip to content
Snippets Groups Projects
Commit 475a005d authored by Christian Futterlieb's avatar Christian Futterlieb Committed by Daniel Goerz
Browse files

[BUGFIX] Do not stop rewrite processing for favicon.ico

Requests to /favicon.ico should not stop rewrite processing. They could
trigger a static route or could be handeled by an error handler.

Change-Id: Iceff3719604f3d6a2ce2fe2a810cb33e7b4cebb2
Resolves: #92237
Releases: master, 10.4, 9.5
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/65645


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarFrank Nägler <frank.naegler@typo3.org>
Tested-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
Reviewed-by: default avatarMathias Brodala <mbrodala@pagemachine.de>
Reviewed-by: default avatarFrank Nägler <frank.naegler@typo3.org>
Reviewed-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
parent 07b40e31
Branches
Tags
No related merge requests found
......@@ -307,7 +307,7 @@ AddDefaultCharset utf-8
# Stop rewrite processing, if we are in the typo3/ directory or any other known directory
# NOTE: Add your additional local storages here
RewriteRule ^(?:typo3/|fileadmin/|typo3conf/|typo3temp/|uploads/|favicon\.ico) - [L]
RewriteRule ^(?:typo3/|fileadmin/|typo3conf/|typo3temp/|uploads/) - [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}'.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment