aboutsummaryrefslogtreecommitdiff
path: root/.htaccess
blob: b1de444949e5a740b568641b3626fd52869b17ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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>