Nginx中配置文件路径有两种方式,一种是root
一种是alias
,那么两种有什么区别呢,下面请跟我一起正确的使用root
和alias
吧
首先还是先说下他俩的区别,主要是对URI
部分处理的不同,如下:
项目结构
Nginx 目录结构如下:html
下为部署的前端项目页面,分别为zuiyu
和test
,下面我将通过使用root
和alias
来访问
nginx
--conf
--logs
--html
--zuiyu
--index.html
--static
--test
--index.html
--static
测试
- 访问
zuiyu
项目
location /zuiyu {
root html;
index index.html;
}
location /zuiyu {
alias html/zuiyu;
index index.html;
}
- 访问
test
项目
location /test {
root html;
index index.html;
}
location /test {
alias html/test;
index index.html;
}
总结
通过上面两个小例子,相信大家也已经看出来root
和alias
的区别了,不错alias
就是别名,也就是使用alias
配置项目地址的时候,可以直接配置到访问的项目文件夹,而使用root
配置时,Nginx 会在的默认部署路径html
下找到匹配uri
中的文件夹,然后在该文件夹下查找index.html
本文由mdnice多平台发布
标签:index,zuiyu,alias,--,Nginx,html,root From: https://www.cnblogs.com/zuiyu/p/16607492.html