diff options
author | Arno Richter <oelna@oelna.de> | 2017-12-20 00:32:30 +0100 |
---|---|---|
committer | Arno Richter <oelna@oelna.de> | 2017-12-20 00:32:30 +0100 |
commit | 603d4cc48dbd5db29e45cc2a3c5245e1c00384f3 (patch) | |
tree | 070919dd16dac5a745d8031babbbff4f7aab6c29 /.htaccess | |
download | microblog-603d4cc48dbd5db29e45cc2a3c5245e1c00384f3.tar.gz microblog-603d4cc48dbd5db29e45cc2a3c5245e1c00384f3.tar.bz2 microblog-603d4cc48dbd5db29e45cc2a3c5245e1c00384f3.zip |
initial commit
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..b1de444 --- /dev/null +++ b/.htaccess @@ -0,0 +1,31 @@ +# this line may need to be removed on other hosts! +Action php-fcgid /fcgi-bin/php-fcgi-starter-7.0 + +<Files ~ "\.db$"> + Order allow,deny + Deny from all +</Files> + +<IfModule mod_rewrite.c> +RewriteEngine On +RewriteBase /microblog + +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule ^(.*) index.php [L] + +</IfModule> + + + + + + + + + + + + + + |