水莹儿 发表于 2016-12-27 11:17:32

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/
页: [1]
查看完整版本: nginx alias与root的区别