0
location =/{
root www/html;
try_files $uri $uri/ $uri.html;
}
location ~* \.(jpg|jpeg|png)$ {
root www/resources/img;
try_files $uri $uri/;
#autoindex on;
expires 1y;
add_header Cache-Control public;
}
location ~* \.(css)$ {
root www/resources/css;
expires 1y;
add_header Cache-Control public;
}
location ~* \.(js)$ {
root www/resources/js;
expires 1y;
add_header Cache-Control public;
}
在目錄www/resources/img
我有1個圖像文件1.jpg
和1子文件夾包含另一個文件2.jpg
。所以,如果我的要求像localhost/1.jpg
我得到我的形象,但如果我要求localhost/2.jpg
它返回404找不到。如何設置nginx來搜索子文件夾中的文件?
localhost/1.jpg - > www/resources/img/1.jpg,但是localhost/2.jpg - > www/resources/img/subfolder/2.jpg? –