Nginx 中 root 和 alias

两个配置项都属于 ngx_http_core_module

 

alias 例子

location /baidu {
      alias /opt/static;
}

访问 /baidu/xxx.html 实际访问的是 /opt/static/xxx.html

 

root 例子

location /baidu {
      root /opt/static;
}

访问 /baidu/xxx.html 实际访问的是 /opt/static/baidu/xxx.html

 


https://nginx.org/en/docs/http/ngx_http_core_module.html#root

https://nginx.org/en/docs/http/ngx_http_core_module.html#alias

posted @ 2020-05-21 10:49  江湖小小白  阅读(238)  评论(0编辑  收藏  举报