图片所在路径:
/www/wwwroot/uploadPath
想要实现的访问路径:
www.xx.com/img/1.jpg
root:
location /img {
root /www/wwwroot/uploadPath;
autoindex on;
}
alias:
location /img {
alias /www/wwwroot/uploadPath;
autoindex on;
}
如果用root会拼接路径,将img拼到后面,alias不会,将指定到指定的路径