我想使用 nginx 从三个文件夹中提供静态内容,其中 root 是 tb:
location ~*\.(jpg|jpeg|gif|css|png|js|ico|html|swf|jsb)$ {
root E:/tb/;
try_files $uri/tp1/ $uri/tp2/ $uri/tp3/;
access_log off;
expires max;
}
以上配置对我不起作用。
我想使用 nginx 从三个文件夹中提供静态内容,其中 root 是 tb:
location ~*\.(jpg|jpeg|gif|css|png|js|ico|html|swf|jsb)$ {
root E:/tb/;
try_files $uri/tp1/ $uri/tp2/ $uri/tp3/;
access_log off;
expires max;
}
以上配置对我不起作用。