我希望为我的服务器上的两个不同的文件夹提供子域的根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
中的索引文件