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/
|
|
|
|
#
|
2013-10-05 21:28:41 +09:00
|
|
|
RewriteBase /
|
|
|
|
#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]
|
2014-08-06 17:30:35 +09:00
|
|
|
|
|
|
|
## You can also use PATHINFO by using this RewriteRule instead:
|
|
|
|
# RewriteRule (.*) index.php/$1 [L,QSA]
|
2009-07-15 19:13:50 +09:00
|
|
|
</IfModule>
|
2009-01-21 13:15:18 +09:00
|
|
|
|
2008-07-20 20:20:32 +09:00
|
|
|
<FilesMatch "\.(ini)">
|
2014-08-06 17:31:31 +09:00
|
|
|
# For mod_access_compat in Apache <2.4
|
2008-07-20 20:20:32 +09:00
|
|
|
Order allow,deny
|
|
|
|
|
2014-08-06 17:31:31 +09:00
|
|
|
# Use this instead for Apache >2.4 (mod_authz_host)
|
|
|
|
# Require all denied
|
|
|
|
</FilesMatch>
|