nginx虛擬目錄配置


參考文章:https://blog.csdn.net/whatday/article/details/50649461

 

 
1. location ~ ^/awstats/ { root /home/awstats/;
訪問:http://test.com/awstats/ 實際訪問的是/home/awstats/awstats/

 2. location ~ ^/awstats/ { alias /home/
訪問:http://test.com/awstats/ 實際訪問的是/home/

3. location ~ ^/awstats/ { #使用alias時目錄名后面一定要加“/” alias /home/awstats/; 
訪問:http://test.com/awstats/ 實際訪問的是/home/awstats/

4. location ~ ^/awstats/ { root /home/; 

 

訪問:http://test.com/awstats/ 實際訪問的是/home/awstats/
 



免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM