Nginx 디렉터리 구조는 다음과 같습니다. html
아래에는 배포된 프런트 엔드 프로젝트 페이지인 zuiyu
및 test
가 있습니다. 아래에서 root
및 alias
를 사용하여 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
rrreee
zuiyu
프로젝트🎜rrreee🎜에 액세스합니다. code>test project🎜 rrreee🎜Summary🎜🎜위의 두 가지 작은 예를 통해 모두가 root
와 alias
의 차이점을 확인했다고 생각합니다. alias
는 별칭입니다. 즉, alias
를 사용하여 프로젝트 주소를 구성하는 경우 액세스한 프로젝트 폴더를 직접 구성할 수 있으며, root를 사용하는 경우에는 code>를 구성하면 Nginx는 기본 배포 경로 <code>html
에서 uri
와 일치하는 폴더를 찾은 다음 index.html
🎜을 검색합니다. 폴더 아래위 내용은 Nginx에서 루트와 별칭의 차이점은 무엇입니까의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!