2009-07-15 22:13:50 +12:00
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
RewriteEngine On
|
2008-06-06 14:20:44 -04:00
|
|
|
|
2009-08-26 03:33:43 -04:00
|
|
|
# NOTE: change this to your actual StatusNet path; may be "/".
|
2008-09-10 14:00:50 -04:00
|
|
|
|
2009-07-15 22:13:50 +12:00
|
|
|
RewriteBase /mublog/
|
2008-09-10 14:00:50 -04:00
|
|
|
|
2009-10-31 14:46:46 -04:00
|
|
|
# If your site is private and want to only allow logged-in users to
|
|
|
|
# be able to download file attachments, uncomment this rule.
|
2009-10-31 14:45:46 -04:00
|
|
|
#
|
|
|
|
# If you have a custom attachment path
|
|
|
|
# ($config['attachments']['path']), change "file/" to match.
|
|
|
|
#
|
|
|
|
#RewriteRule ^file/(.*) getfile/$1
|
|
|
|
|
2009-07-15 22:13:50 +12:00
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
RewriteRule (.*) index.php?p=$1 [L,QSA]
|
|
|
|
</IfModule>
|
2009-01-20 23:15:18 -05:00
|
|
|
|
2008-07-20 07:20:32 -04:00
|
|
|
<FilesMatch "\.(ini)">
|
|
|
|
Order allow,deny
|
|
|
|
</FilesMatch>
|
|
|
|
|