According to the page referenced:
http://www.easymodrewrite.com/example-subdomains

*"This code should be placed in the htaccess file in the root of your
domain, i.e.* domain.com/.htaccess"

.....

On Nov 12, 2007 1:30 PM, Antonio Piu <[EMAIL PROTECTED]> wrote:

> >> Want I want to do is the following:
> >>
> >> If someone accesses http://user.domain.com/ he shall be redirected to
> >> http://www.domain.com/~user/ <http://www.domain.com/%7Euser/>
> >
> > From http://www.easymodrewrite.com/example-subdomains without having
> > tested it, this should work:
> >
> >    RewriteEngine On
> >    RewriteBase /
> >    RewriteCond %{HTTP_HOST} !www.domain.com$ [NC]
> >    RewriteCond %{HTTP_HOST} ^(www.)?([a-z0-9-]+).domain.com$ [NC]
> >    RewriteRule (.*) ~%2/$1 [L]
> >
>
> Thanks! but where I have to put this code? In which .htaccess?
>
>
> >
> >
> > ---------------------------------------------------------------------
> > 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]
> >
>
>
> ---------------------------------------------------------------------
> 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]
>
>

Reply via email to