Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
 
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Отдача большого контент	а через fast_cgi
 
 
On Tue, Dec 01, 2009 at 05:38:56PM +0600, Peter A. Shevtsov wrote:
> Hello!
> 
> >
> > location /files/ {
> >     try_files  $uri   /wp-content/blogs.php?file=$uri;
> > }
> >
> 
> При запросе /files/foobar.ext будет совершёл переход на
> /wp-content/blogs.php?file=/files/foobar.ext а надо
> /wp-content/blogs.php?file=foobar.ext
> 
> Как настроить?
 location ~ ^/files/(.+)$ {
     try_files  $uri   /wp-content/blogs.php?file=$1;
 }
-- 
Игорь Сысоев
http://sysoev.ru
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
 
 |