【发布时间】:2017-06-06 10:03:48
【问题描述】:
以下3个指令有区别吗?
location ~* \.(png)$ {
expires max;
log_not_found off;
}
location ~ \.(png)$ {
expires max;
log_not_found off;
}
location ~ .(png)$ {
expires max;
log_not_found off;
}
提前感谢您抽出宝贵的时间。
【问题讨论】:
标签: php linux nginx server nginx-location