示例
location /web1/ {
root /etc/nginx/html/;
index biaobai.html;
}
location /web2/ {
root /etc/nginx/html/;
index index.html;
}
说明
root /etc/nginx/html/; 表示访问location xxxx 的根路径
/web2/ 表示在根路径下即/etc/nginx/html/的web2文件夹寻找静态文件即/etc/nginx/html/web2/目录下