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/
发布时间: 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/