首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 开源软件 >

nginx alias与root的差别

2012-07-02 
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/

热点排行