12345678910111213141516171819202122232425262728293031323334 |
- <IfModule mod_rewrite.c>
- RewriteEngine On
- # NOTE: change this to your actual StatusNet base URL path,
- # minus the domain part:
- #
- # http://example.com/ => /
- # http://example.com/mublog/ => /mublog/
- #
- RewriteBase /
- #RewriteBase /mublog/
- ## Uncomment these if having trouble with API authentication
- ## when PHP is running in CGI or FastCGI mode.
- #
- #RewriteCond %{HTTP:Authorization} ^(.*)
- #RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteRule (.*) index.php?p=$1 [L,QSA]
- ## You can also use PATHINFO by using this RewriteRule instead:
- # RewriteRule (.*) index.php/$1 [L,QSA]
- </IfModule>
- <FilesMatch "\.(ini)">
- # For mod_access_compat in Apache <2.4
- Order allow,deny
- # Use this instead for Apache >2.4 (mod_authz_host)
- # Require all denied
- </FilesMatch>
|