nginx alias与root的区别看例子:1.location ~ ^/awstats/ {root/home/awstats/访问:http://test.com/awst
nginx alias与root的区别
看例子:
1. location ~ ^/awstats/ {
root /home/awstats/;
访问:http://test.com/awstats/ 实际访问的是/home/awstats/awstats/
2. location ~ ^/awstats/ {
alias /home/
访问:http://test.com/awstats/ 实际访问的是/home/
