alias配置 location /img/ { alias /home/; autoindex on; } 访问路径是 ip:端口/img 最终去本地硬盘找的路径是 /home (系统文件) root配置 location /img/ { root /home/; autoindex on; } 访问路径是 ip:端口/img 最终去本地硬盘找的路径是 /home/img (系统文件) 参考地址 https://blog.csdn.net/a760352276/article/details/106774599