Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Помогите сконвертировать 2 строчки из htaccess
Возможно, не самый лучший вариант:
location ~ \.(jpg|jpeg|gif|png)$ {
root /path;
try_files $uri @convert;
}
location @convert {
fastcgi_pass ...
}
2009/10/30 pilot911 <nginx-forum@xxxxxxxx>:
> насколько это правильный вариант:
>
> rewrite \.(jpg|jpeg|gif|png)$ /convert.php last;
>
> Posted at Nginx Forum:
> http://forum.nginx.org/read.php?21,18123,18127#msg-18127
>
>
>
|