blob: 1cc74f42b08e9c69adc394252ca14546104d1934 (
plain) (
blame)
1
2
3
4
5
6
|
# Protect against bug 28235
<IfModule rewrite_module>
RewriteEngine On
RewriteCond %{QUERY_STRING} \.[^\\/:*?\x22<>|%]+(#|\?|$) [nocase]
RewriteRule . - [forbidden]
</IfModule>
|