nginx虚拟目录配置
Posted panzer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx虚拟目录配置相关的知识,希望对你有一定的参考价值。
参考文章: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虚拟目录配置的主要内容,如果未能解决你的问题,请参考以下文章