读书人

nginx alias与root的差别

发布时间: 2012-07-02 17:46:22 作者: rapoo

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/

读书人网 >开源软件

热点推荐