diff options
author | Evan Prodromou <evan@status.net> | 2010-03-25 16:35:35 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-03-25 16:35:35 -0400 |
commit | 5b23b7e7367a1c42ac5e44b0d799328a8235d96c (patch) | |
tree | d984f9e6dd1183bebc88afedd94345fe13daeb37 | |
parent | 7f6fdb528c7e089984bc6ca121508469d423483c (diff) | |
parent | cd9017408e3a970d5d12433b9b81266817e0cc6f (diff) |
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
-rw-r--r-- | htaccess.sample | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/htaccess.sample b/htaccess.sample index 18a868698..fa09b30f6 100644 --- a/htaccess.sample +++ b/htaccess.sample @@ -1,12 +1,17 @@ <IfModule mod_rewrite.c> RewriteEngine On - # NOTE: change this to your actual StatusNet path; may be "/". - + # NOTE: change this to your actual StatusNet base URL path, + # minus the domain part: + # + # http://example.com/ => / + # http://example.com/mublog/ => /mublog/ + # 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] |