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