blob: 6ff2258e7da4ca532bb46c438ed98a1911e789fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- ./.htaccess.orig 2014-08-31 11:25:27.000000000 +0200
+++ ./.htaccess 2014-08-31 11:25:51.000000000 +0200
@@ -1,5 +1,12 @@
+<IfVersion <= 2.4>
<Files ~ "\.tpl|NEWS|ChangeLog">
Order allow,deny
deny from all
satisfy all
</Files>
+</IfVersion>
+<IfVersion >= 2.4>
+<Files ~ "\.tpl|NEWS|ChangeLog">
+Require all denied
+</Files>
+</IfVersion>
|