Nginx中root和alias区别

1、区别

  • 共同点 : root和alias两者都都是用来指定URI和磁盘文件的映射关系;
  • 区别: root会将定义路径与URI叠加;而alias只取定义路径;

root示例:

客户端请求www.test.com/images/1.jpg,则对应磁盘映射路径/opt/nginx/html/images/images/1.jpg

location /images {

        root /opt/nginx/html/images;

        index index.html index.htm;

}

注意:

也就是说使用root 请求的真实路径是 rootpath + /uri ,也就是文件目录 + URI / 后面的内容。

alias示例

客户端请求www.test.com/images/1.jpg,则对应磁盘映射路径/opt/nginx/html/images/1.jpg

location /images {

        alias /opt/nginx/html/images/; //最后面一定要加 "/"

        index index.html index.htm;

}

注意:

使用alias uri和文件路径进行了叠加,其实就是alias + 请求的文件。

你可能感兴趣的:(nginx,nginx,运维)