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