location /
{
root /www/dist;
try_files $uri $uri/ /index.html;
index index.html;
}
上面的代码时主页面,我想访问 /test 的时候返回另一个文件夹test中的页面,我用下面的代码好像没有用
location /test
{
root /www/test;
try_files $uri $uri/ /index.html;
index index.html;
}