.htaccess 252 B

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