UserDir and ~
am 18.01.2010 12:00:19 von Daniel Ruiz Molina
Hi,
I would to like to do some type of rewrite for remove ~ in connections
like http://mydomain/~user. UserDir is, by default, public_html and
directory for it is /home/*/public_html. Users need to write
http://mydomain/~user to get their own pages, but now I'm interested in
doing some rewrite for allowing connections like http://mydomain/user.
I have test this:
UserDir /home/*/public_html
RewriteEngine on
RewriteCond /home/$1/$2 -f [OR]
RewriteCond /home/$1/$2 -d
RewriteRule ^/([^/]+)(.*) /home//$1/$2
but this not works...
Help, please!!
Thanks.
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: UserDir and ~
am 18.01.2010 13:48:47 von Eric Covener
On Mon, Jan 18, 2010 at 6:00 AM, Daniel Ruiz Molina
wrote:
> Hi,
>
> I would to like to do some type of rewrite for remove ~ in connections li=
ke
> http://mydomain/~user. UserDir is, by default, public_html and directory =
for
> it is /home/*/public_html. Users need to write http://mydomain/~user to g=
et
> their own pages, but now I'm interested in doing some rewrite for allowin=
g
> connections like http://mydomain/user.
>
> I have test this:
>
> UserDir /home/*/public_html
>
>
> =A0 RewriteEngine on
> =A0 RewriteCond /home/$1/$2 -f [OR]
> =A0 RewriteCond /home/$1/$2 -d
> =A0 RewriteRule ^/([^/]+)(.*) /home//$1/$2
>
>
>
> but this not works...
>
What happens? What does your errorlog say? What does the RewriteLog
say? Did you drop "public_html" intentionally?
--=20
Eric Covener
covener@gmail.com
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org