Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
rewrite location in the middle of the path
- To: nginx-ru@xxxxxxxxx
- Subject: rewrite location in the middle of the path
- From: "nrsk" <nginx-forum@xxxxxxxx>
- Date: Fri, 30 Nov 2012 11:06:39 -0500
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tigger.jlkhosting.com; s=x; h=Date:Sender:From:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To; bh=jEm6K3IPn7658sa1b+hfkBsc7ggAeMZUYhP1gyDuWU8=; b=buxI3T1upQDC6HNjL0GJVoVvC4IFWJ9QECe8YLmCJMZBsBMfCXTvmsCv+yCWm/2WN3t/fA/l3U6Ca2XQAIyegIbNzkDynYAZ53AeApRpgr7Vy0J70P6uhy7a88GTer07;
Здравствуйте!
Столкнулась с задачей: необходимо преобразовать url типа
/my-context/id/param1,param2,paramN в url типа
/dev/folder/id_param1,param2,paramN. Id может быть только числом.
Попробовала написать rewrite для данного преобразования.
location /my-context/([0-9]+)/(.*)$ {
rewrite /dev/folder/$1_$2/ permanent;
}
Итоговую строку получила в виде /dev/folder/id/param1,... etc.
В чем может быть проблема с заменой символов "/" на "_" ?
Спасибо!
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,233437,233437#msg-233437
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|