0

我有一个 php 脚本,可以将图像缩略图转换并保存到指示其大小的文件夹中。

例如,通过访问像“ http://website.com/thumbs/640x480/image.jpg ”这样的 url,将创建缩略图图像并将其保存在与 url 匹配的文件夹中,以便下次静态提供图像. php 脚本使用以下位置块:

location /thumbs/ {

    try_files $uri /thumbs/index.php?r=$uri&$query_string;

}

如果有查询参数(例如?nocache=1附加到缩略图网址),我想做的是重新生成缩略图。

4

1 回答 1

0

我认为你需要这样的东西:

location /thumbs/ {

   if ($arg_nocache) {
       rewrite ^(.*)$ /thumbs/index.php?r=$uri&$query_string break;
   }


    try_files $uri /thumbs/index.php?r=$uri&$query_string;

}
于 2013-09-12T08:54:27.620 回答