aboutsummaryrefslogtreecommitdiff
path: root/.htaccess
diff options
context:
space:
mode:
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess10
1 files changed, 8 insertions, 2 deletions
diff --git a/.htaccess b/.htaccess
index b1de444..ffdf7b6 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,9 +1,16 @@
-# this line may need to be removed on other hosts!
+# this line may need to be modified on other hosts!
+<IfModule mod_fcgid.c>
Action php-fcgid /fcgi-bin/php-fcgi-starter-7.0
+</IfModule>
<Files ~ "\.db$">
+ <IfModule !mod_authz_core.c>
Order allow,deny
Deny from all
+ </IfModule>
+ <IfModule mod_authz_core.c>
+ Require all denied
+ </IfModule>
</Files>
<IfModule mod_rewrite.c>
@@ -13,7 +20,6 @@ RewriteBase /microblog
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php [L]
-
</IfModule>