]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - htaccess.sample
Merge branch 'master' of git@gitorious.org:statusnet/mainline into testing
[quix0rs-gnu-social.git] / htaccess.sample
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   ## Uncomment these if having trouble with API authentication
9   ## when PHP is running in CGI or FastCGI mode.
10   #RewriteCond %{HTTP:Authorization} ^(.*)
11   #RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
12
13   RewriteCond %{REQUEST_FILENAME} !-f
14   RewriteCond %{REQUEST_FILENAME} !-d
15   RewriteRule (.*) index.php?p=$1 [L,QSA]
16 </IfModule>
17
18 <FilesMatch "\.(ini)">
19   Order allow,deny
20 </FilesMatch>
21