diff options
Diffstat (limited to 'images/.htaccess')
-rw-r--r-- | images/.htaccess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/images/.htaccess b/images/.htaccess index 2aea33e0..1cc74f42 100644 --- a/images/.htaccess +++ b/images/.htaccess @@ -1,6 +1,6 @@ # Protect against bug 28235 <IfModule rewrite_module> RewriteEngine On - RewriteCond %{QUERY_STRING} \.[a-z0-9]{1,4}(#|\?|$) [nocase] + RewriteCond %{QUERY_STRING} \.[^\\/:*?\x22<>|%]+(#|\?|$) [nocase] RewriteRule . - [forbidden] </IfModule> |