2009-07-15 11:13:50 +01:00
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
RewriteEngine On
|
2008-06-06 19:20:44 +01:00
|
|
|
|
2010-03-25 19:48:31 +00:00
|
|
|
# NOTE: change this to your actual StatusNet base URL path,
|
|
|
|
# minus the domain part:
|
|
|
|
#
|
|
|
|
# http://example.com/ => /
|
|
|
|
# http://example.com/mublog/ => /mublog/
|
|
|
|
#
|
2009-07-15 11:13:50 +01:00
|
|
|
RewriteBase /mublog/
|
2008-09-10 19:00:50 +01:00
|
|
|
|
2010-03-17 17:52:11 +00:00
|
|
|
## Uncomment these if having trouble with API authentication
|
|
|
|
## when PHP is running in CGI or FastCGI mode.
|
2010-03-25 19:48:31 +00:00
|
|
|
#
|
2010-03-17 17:52:11 +00:00
|
|
|
#RewriteCond %{HTTP:Authorization} ^(.*)
|
|
|
|
#RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
|
|
|
|
|
2009-07-15 11:13:50 +01:00
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
RewriteRule (.*) index.php?p=$1 [L,QSA]
|
|
|
|
</IfModule>
|
2009-01-21 04:15:18 +00:00
|
|
|
|
2008-07-20 12:20:32 +01:00
|
|
|
<FilesMatch "\.(ini)">
|
|
|
|
Order allow,deny
|
|
|
|
</FilesMatch>
|
|
|
|
|