diff --git a/.htaccess b/.htaccess
index 1b63f9ad6f..2348cdc38b 100644
--- a/.htaccess
+++ b/.htaccess
@@ -4,7 +4,14 @@ AddType audio/ogg .oga
#AddHandler php53-cgi .php
-Deny from all
+
+ #Apache 2.4
+ Require all denied
+
+
+ #Apache 2.2
+ Deny from all
+
diff --git a/util/.htaccess b/util/.htaccess
index b311c14c23..7b1f94f0e6 100644
--- a/util/.htaccess
+++ b/util/.htaccess
@@ -1,5 +1,12 @@
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
+
+ #Apache 2.4
+ Require all denied
+
+
+ #Apache 2.2
+ Deny from all
+
diff --git a/view/.htaccess b/view/.htaccess
index 559a5fcc09..04cd546856 100644
--- a/view/.htaccess
+++ b/view/.htaccess
@@ -1,3 +1,10 @@
-Deny from all
-
\ No newline at end of file
+
+ #Apache 2.4
+ Require all denied
+
+
+ #Apache 2.2
+ Deny from all
+
+