nginx location root alias

root与alias主要区别在于nginx如何解释location后面的uri,这会使两者分别以不同的方式将请求映射到服务器文件上。
root的处理结果是:root路径+location路径
alias的处理结果是: 使用alias路径替换location路径

alias是一个目录别名的定义,root则是最上层目录的定义。
root实例:

location ^~ /test/ {
     root /www/root/html/;
}

如果一个请求的URI是/test/a.html时,web服务器将会返回服务器上的/www/root/html/test/a.html的文件。
alias实例:

location ^~ /test/ {
 alias /www/root/html/new_test/;
}

如果一个请求的URI是/test/a.html时,web服务器将会返回服务器上的/www/root/html/new_test/a.html的文件。注意这里是new_test,因为alias会把location后面配置的路径丢弃掉,把当前匹配到的目录指向到指定的目录。

注意:

  1. 使用alias时,目录名后面一定要加"/"。
  2. alias在使用正则匹配时,必须捕捉要匹配的内容并在指定的内容处使用。
  3. alias只能位于location块中。(root可以不放在location中)
上一篇:git常用命令


下一篇:nginx中root和alias指令的解释