ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: rewrite



On Mon, Jun 06, 2011 at 05:01:38PM +0400, Sergey Shepelev wrote:
> > Добрый день, есть вопрос с преобразованием урла
> >
> > Есть
> > http://www.domain.com/file.exe
> > http://www.domain.com/file.rpm
> > http://www.domain.com/file.deb
> >
> > Хочется чтобы реврайт выполнялся на http://www.domain.com/file.exe (rpm, 
> > deb)
> >
> > Возможно передать из урла расширение в реврайт?
> >
> > т.е. например в этом случае:
> >
> > location ~* "/file.(exe|rpm|deb)$" {
> > rewrite ^ http://www.domain2.com/folder/file$1 permanent;
> > }
> >
> > хочу передать расширение файла в rewrite: как это правильно сделать?
> >
> 
> location /file. {
>   rewrite ^/file.(exe|rpm|deb)$ http://www.domain2.com/folder/file.$1 
> permanent;
> }
> 
> Если есть какая-то страшная необходимость в регекспе в location, то
> через переменную.
> 
> location ~ ^/file\.(exe|deb|rpm)$ {
>   set $ext $1;
>   rewrite ^ http://www.domain2.com/folder/file.$ext permanent;
> }

location ~ ^/file\.(?<NAME>exe|deb|rpm)$ {


-- 
Igor Sysoev

_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru

  • References:

 




Copyright © Lexa Software, 1996-2009.