1
<IfModule mod_rewrite.c>
2
  RewriteEngine On
3
4
  # NOTE: change this to your actual StatusNet path; may be "/".
5
6
  RewriteBase /mublog/
7
8
  RewriteCond %{REQUEST_FILENAME} !-f
9
  RewriteCond %{REQUEST_FILENAME} !-d
10
  RewriteRule (.*) index.php?p=$1 [L,QSA]
11
</IfModule>
12
13
<FilesMatch "\.(ini)">
14
  Order allow,deny
15
</FilesMatch>