aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorKlaus Weidenbach <Klaus.Weidenbach@gmx.net>2015-06-21 23:58:19 +0200
committerKlaus Weidenbach <Klaus.Weidenbach@gmx.net>2015-06-21 23:58:19 +0200
commit5a96f3331a86b32f6ed1c44fb44f43a287611a38 (patch)
treefc7d6243c56f10b257515772442f10ba8600ad36 /view
parentc1e0987b880c116b392d65a2b40cda2fd53debe0 (diff)
downloadvolse-hubzilla-5a96f3331a86b32f6ed1c44fb44f43a287611a38.tar.gz
volse-hubzilla-5a96f3331a86b32f6ed1c44fb44f43a287611a38.tar.bz2
volse-hubzilla-5a96f3331a86b32f6ed1c44fb44f43a287611a38.zip
Compatible update for .htaccess.
This should hopefully work in Apache 2.2 and 2.4.
Diffstat (limited to 'view')
-rw-r--r--view/.htaccess10
1 files changed, 8 insertions, 2 deletions
diff --git a/view/.htaccess b/view/.htaccess
index 559a5fcc0..115be49c0 100644
--- a/view/.htaccess
+++ b/view/.htaccess
@@ -1,3 +1,9 @@
<FilesMatch "\.tpl">
-Deny from all
-</FilesMatch> \ No newline at end of file
+ <IfModule !mod_access_compat.c>
+ Require all denied
+ </IfModule>
+ <IfModule mod_access_compat.c>
+ Order deny,allow
+ Deny from all
+ </IfModule>
+</FilesMatch>