diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-06-22 08:09:00 +1000 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-06-22 08:09:00 +1000 |
commit | 9f9dee28ca6cb86a7c58fa8fd28c086498e83e21 (patch) | |
tree | fc7d6243c56f10b257515772442f10ba8600ad36 /util/.htaccess | |
parent | c1e0987b880c116b392d65a2b40cda2fd53debe0 (diff) | |
parent | 5a96f3331a86b32f6ed1c44fb44f43a287611a38 (diff) | |
download | volse-hubzilla-9f9dee28ca6cb86a7c58fa8fd28c086498e83e21.tar.gz volse-hubzilla-9f9dee28ca6cb86a7c58fa8fd28c086498e83e21.tar.bz2 volse-hubzilla-9f9dee28ca6cb86a7c58fa8fd28c086498e83e21.zip |
Merge pull request #353 from dawnbreak/master
Compatible update for .htaccess.
Diffstat (limited to 'util/.htaccess')
-rw-r--r-- | util/.htaccess | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/util/.htaccess b/util/.htaccess index b311c14c2..333a08d40 100644 --- a/util/.htaccess +++ b/util/.htaccess @@ -1,5 +1,10 @@ Options -Indexes -# Remove the following line or modify it to run the string translator utility -Deny from all - +# Remove the following lines or modify it to run the string translator utility +<IfModule !mod_access_compat.c> + Require all denied +</IfModule> +<IfModule mod_access_compat.c> + Order deny,allow + Deny from all +</IfModule> |