参考文章:https://blog.csdn.net/whatday/article/details/50649461

 
1. location ~ ^/awstats/ {
root /home/awstats/;
访问:http://test.com/awstats/ 实际访问的是/home/awstats/awstats/

. location ~ ^/awstats/ {
alias /home/
访问:http://test.com/awstats/ 实际访问的是/home/
.      location ~ ^/awstats/ {                        #使用alias时目录名后面一定要加“/”
alias /home/awstats/;
访问:http://test.com/awstats/ 实际访问的是/home/awstats/
.      location ~ ^/awstats/ {
root /home/
;
访问:http://test.com/awstats/ 实际访问的是/home/awstats/
 
04-19 20:56
查看更多