From d8ee7bde579182c3923cfb81b76d9315d0d8017a Mon Sep 17 00:00:00 2001 From: sharvey Date: Wed, 26 Jan 2011 03:14:26 +0000 Subject: [PATCH] BUGFIX #6321 Whitelisted file extensions with uppercase extensions blocked by case sensitive FilesMatch directive in assets/.htaccess (does not affect IIS 7.x which uses web.config) (from r115816) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@115819 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- assets/.htaccess | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/assets/.htaccess b/assets/.htaccess index 4013417..14d3bca 100644 --- a/assets/.htaccess +++ b/assets/.htaccess @@ -19,8 +19,11 @@ # Once you do this, visitors will be able to download *.exe files that are uploaded to the assets # directory. # +# For compatibility reasons, we include uppercase versions of allowed extensions, as Apache 1.3 +# does not support regular expression case insensitive matches using PCRE style. +# Deny from all - + Allow from all