您好,登錄后才能下訂單哦!
這篇文章主要介紹了Nginx中root與alias區別是什么的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Nginx中root與alias區別是什么文章都會有所收獲,下面我們一起來看看吧。
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
關于“Nginx中root與alias區別是什么”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Nginx中root與alias區別是什么”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。