nginx中配置服务器文件访问的路径
作者:互联网
图片所在路径:
/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不会,将指定到指定的路径
标签:www,uploadPath,img,alias,路径,wwwroot,nginx,服务器 来源: https://www.cnblogs.com/remix-/p/14313321.html