Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: rewrite
- To: nginx-ru@xxxxxxxxx
- Subject: Re: rewrite
- From: Sergey Shepelev <temotor@xxxxxxxxx>
- Date: Mon, 6 Jun 2011 17:01:38 +0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type:content-transfer-encoding; bh=VQv63quPNYHB2x4NQ5CtJUZUEsZGR5GMZNP4XXHfTW4=; b=dq/9Ihd/Kt0jKw+lHyOdqzQQgGPnmtv8cd5UFO0BApmOw5OGUobqunU8sJzOde2Og+ MHKXGPP5AavU3pgXIg6Hj7o69GbFPv9AhyUjJQLMNAJ6FwGArsiR7jxk/+PgCsmTZuLd d6+k3CP+mLwzEvsSuWORnGcN2rdnOaRdLjK/g=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=qz3rcIsbe75z31aQv7cA2GLkZRpkfpjWNE2pK2iL13777fDjlOuf7yCgLCBK9Erv2Q 5sTPenSB4fPwCJF6RABMKiWwTca2cUjqnFtjzOPtG8JG9XbEXu88qR0RVcglloBalLYU 0fG5bwVP8yFPa1teYHuxc4+1wWrDo3bJZeZEo=
- In-reply-to: <604791307364082@xxxxxxxxxxxxxxx>
- References: <604791307364082@xxxxxxxxxxxxxxx>
> Добрый день, есть вопрос с преобразованием урла
>
> Есть
> 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;
}
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|