summaryrefslogtreecommitdiff
path: root/.htaccess
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-07-28 14:27:18 +0200
committerAleksander Machniak <alec@alec.pl>2013-07-28 14:27:18 +0200
commit1c51d16eb3c564702597b86e9ea40f2791052a7c (patch)
treed58cec1cd4a7a0edfe063fcc172687e12ec19a53 /.htaccess
parent59f0313d98bf1e06624fedd5137e7138dfcfaf30 (diff)
- Fix rewrite rule in .htaccess (#1489240)
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess2
1 files changed, 1 insertions, 1 deletions
diff --git a/.htaccess b/.htaccess
index 97db56095..dc6e62f38 100644
--- a/.htaccess
+++ b/.htaccess
@@ -27,7 +27,7 @@ php_value session.gc_probability 1
RewriteEngine On
RewriteRule ^favicon\.ico$ skins/larry/images/favicon.ico
# security rules
-RewriteRule .git - [F]
+RewriteRule \.git - [F]
RewriteRule ^/?(README(.md)?|INSTALL|LICENSE|CHANGELOG|UPGRADING)$ - [F]
RewriteRule ^/?(SQL|bin) - [F]
</IfModule>