2009-07-15 19:13:50 +09:00
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
RewriteEngine On
|
2008-06-07 03:20:44 +09:00
|
|
|
|
2010-03-26 04:48:31 +09: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 19:13:50 +09:00
|
|
|
RewriteBase /mublog/
|
2008-09-11 03:00:50 +09:00
|
|
|
|
2010-03-18 02:52:11 +09:00
|
|
|
## Uncomment these if having trouble with API authentication
|
|
|
|
## when PHP is running in CGI or FastCGI mode.
|
2010-03-26 04:48:31 +09:00
|
|
|
#
|
2010-03-18 02:52:11 +09:00
|
|
|
#RewriteCond %{HTTP:Authorization} ^(.*)
|
|
|
|
#RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
|
|
|
|
|
2009-07-15 19:13:50 +09:00
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
RewriteRule (.*) index.php?p=$1 [L,QSA]
|
|
|
|
</IfModule>
|
2009-01-21 13:15:18 +09:00
|
|
|
|
2008-07-20 20:20:32 +09:00
|
|
|
<FilesMatch "\.(ini)">
|
|
|
|
Order allow,deny
|
|
|
|
</FilesMatch>
|
|
|
|
|