一:Location之正則匹配
再來看,正則也來參與.
location / {
root /usr/local/nginx/html;
index index.html index.htm;
}
location ~ image {
root /var/www/image;
index index.html;
}
如果我們訪問 http://xx.com/image/logo.png
此時, “/” 與”/image/logo.png” 匹配
同時,”image”正則 與”image/logo.png”也能匹配,誰發揮作用?
正規表示式的成果將會使用.
圖片真正會訪問 /var/www/image/logo.png