我有一个 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
附加到缩略图网址),我想做的是重新生成缩略图。