我希望将子域的根URL和子域的目录提供给服务器上的两个不同文件夹。这是我已有但不起作用的简单设置...
server {
index index.html index.htm;
server_name test.example.com;
location / {
root /web/test.example.com/www;
}
location /static {
root /web/test.example.com/static;
}
}
在此示例中,test.example.com/
将带入索引文件/web/test.example.com/www
并将要test.example.com/static
带入索引文件/web/test.example.com/static
alias
。请阅读官方文档,而不是用户填写的社区Wiki。Quote:当location与指令值的最后一部分匹配时,最好使用root指令。