On Thu, 2009-02-05 at 15:13 +1000, Steve Dalton wrote:
> I'm running apache 2.2 on Ubuntu and I need to serve up a different
> directory depending on the user that is authorised with the server.
> I've check the mailing list and apache docs but haven't found much so
> far - I may just not have the proper search terms though (I don't know
> how best to describe it)
>
> eg.
>
> http://[email protected] -> /var/www/private/spidie
> http://[email protected] -> /var/www/private/fred
How about this:
RewriteEngine On
RewriteRule ^(.*)$ /var/www/private/%{REMOTE_USER}/$1
--
Matt
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [email protected]
" from the digest: [email protected]
For additional commands, e-mail: [email protected]