nginx.conf中root和alias的区别

1
2
3
4
location /wp {  
  root   D:/workspace/webapps/WordPress;
  index  index.html index.htm;
}

当请求为/wp/index.html时,实际访问的是D:/workspace/webapps/WordPress/wp/index.html。

1
2
3
4
location /wp {  
  alias   D:/workspace/webapps/WordPress;
  index  index.html index.htm;
}

当请求为/wp/index.html时,实际访问的是D:/workspace/webapps/WordPress/index.html。

看出差别了吗?