rewrite help

glen at lumanau.web.id glen at lumanau.web.id
Wed May 5 14:36:29 MSD 2010


Yes it should be rewrite to 
http://www.example.com/site/yahoo/test/article

Is there any way to do this?


Best Regards,

Glen Lumanau

-----Original Message-----
From: Igor Sysoev <igor at sysoev.ru>
Date: Wed, 5 May 2010 13:56:05 
To: <nginx at nginx.org>
Subject: Re: rewrite help

On Wed, May 05, 2010 at 04:50:01PM +0700, Glen Lumanau wrote:

> Hi Igor,
> 
> It works already on index. But when i accessing
> yahoo.example.com/test/article, it gives me error.

Where should it be proxied to ? To

http://www.example.com/site/yahoo/test/article

?

> When i give proxy_pass http://www.example.com/site/yahoo.com$request_uri, it
> giving me bad gateway

This is because nginx try dynamically resolve www.example.com without
resolver defined.

However, this way

        location / {
            proxy_pass  http://www.example.com/site/yahoo/;
        }

is better than

        location / {
            proxy_pass  http://www.example.com/site/yahoo/request_uri;
        }

> -----Original Message-----
> From: Igor Sysoev [mailto:igor at sysoev.ru] 
> Sent: 05 Mei 2010 16:06
> To: nginx at nginx.org
> Subject: Re: rewrite help
> 
> On Wed, May 05, 2010 at 03:22:36PM +0700, Glen Lumanau wrote:
> 
> > I tried
> > 
> > server {
> >         listen          80;
> >         server_name     yahoo.example.com;
> > 
> >         rewrite ^.+ http://www.example.com/site/yahoo$uri last;
> > }
> > 
> > However it's not rewrited. It's being redirected to
> http://www.example.com/site/yahoo
> 
>   server {
>        server_name  yahoo.example.com;
>        location / {
>            proxy_pass  http://www.example.com/site/yahoo/;
>        }
>   }
> 
>   server {
>        server_name  google.example.com;
>        location / {
>            proxy_pass  http://www.example.com/site/google/;
>        }
>   }
> 
> 
> > -----Original Message-----
> > From: Edho P Arief [mailto:edhoprima at gmail.com] 
> > Sent: 05 Mei 2010 15:16
> > To: nginx at nginx.org
> > Subject: Re: rewrite help
> > 
> > On Wed, May 5, 2010 at 3:09 PM, Glen Lumanau <glen at lumanau.web.id> wrote:
> > > Hi folks,
> > >
> > >
> > >
> > > I need a rewrite rules like this
> > >
> > >
> > >
> > > I have www.example.com, google.example.com, yahoo.example.com
> > >
> > >
> > >
> > > I need to rewrite
> > >
> > > Google.example.com à  www.example.com/site/google
> > >
> > > Yahoo.example.com à www.example.com/site/yahoo
> > >
> > >
> > >
> > > How can I do that?
> > >
> > 
> > separate server block with rewrite on each blocks
> > 
> > 
> > 
> > -- 
> > O< ascii ribbon campaign - stop html mail - www.asciiribbon.org
> > 
> >_______________________________________________
> > nginx mailing list
> > nginx at nginx.org
> > http://nginx.org/mailman/listinfo/nginx
> > 
> > 
> >_______________________________________________
> > nginx mailing list
> > nginx at nginx.org
> > http://nginx.org/mailman/listinfo/nginx
> 
> -- 
> Igor Sysoev
> http://sysoev.ru/en/
> 
>_______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://nginx.org/mailman/listinfo/nginx
> 
> 
>_______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://nginx.org/mailman/listinfo/nginx

-- 
Igor Sysoev
http://sysoev.ru/en/

_______________________________________________
nginx mailing list
nginx at nginx.org
http://nginx.org/mailman/listinfo/nginx


More information about the nginx mailing list