location / {
root /home;
}
location = /imooc/img/face1.png {
root /home;
}
#符合图片的显示 location ~ \.(GIF|jpg|png|jpeg) {
root /home;
}
#GIF必须大写才能匹配到
location?\.(GIF|jpg|png|jpeg) {
root /home;
}
location ^~ /test/img {
root /home
}
原文:https://www.cnblogs.com/xiaodou00/p/13084086.html