首页 > 其他 > 详细

nginx虚拟目录配置

时间:2018-06-26 21:49:37      阅读:210      评论:0      收藏:0      [点我收藏+]

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

 

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

 
2.      location ~ ^/awstats/ {
        alias  /home/
访问:http://test.com/awstats/ 实际访问的是/home/

3.      location ~ ^/awstats/ {                        #使用alias时目录名后面一定要加“/”
        alias  /home/awstats/;
访问:http://test.com/awstats/ 实际访问的是/home/awstats/

4.      location ~ ^/awstats/ {
        root  /home/;

 

访问:http://test.com/awstats/ 实际访问的是/home/awstats/
 


nginx虚拟目录配置

原文:https://www.cnblogs.com/taiguyiba/p/9231337.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!