Added tag unstable_2.3.13 for changeset 180d185518cf
[fa-stable.git] / .htaccess
index 03410fbc3a34c234d1e457f64a2668d91d5bec1f..cad8d65d5f9619ca575cf62979288af8a28540ce 100644 (file)
--- a/.htaccess
+++ b/.htaccess
@@ -1,11 +1,30 @@
+# Protect sensitive files.
+<FilesMatch "\.(inc|po|sh|.*sql|log)$">
+       Order allow,deny
+       Deny from All
+       Satisfy All
+</FilesMatch>
+
+# Disable directory listings.
+Options -Indexes
+
+# Set the default index.
+DirectoryIndex index.php
+
 # These settings are recommended
 # Maybe you might have problems
 # with other scripts that needs
 # register_globals ON
-php_flag magic_quotes_gpc Off
-php_flag register_globals Off
-# do not use SID in url
-php_flag session.use_trans_sid Off
+<IfModule mod_php4.c>
+       php_flag magic_quotes_gpc Off
+       php_flag register_globals Off
+       php_flag session.use_trans_sid Off
+</IfModule>
+<IfModule mod_php5.c>
+       php_flag magic_quotes_gpc Off
+       php_flag register_globals Off
+       php_flag session.use_trans_sid Off
+</IfModule>
 
 #Sometimes neccessary to add those
 #