我在下面有一些静态 html 文件:
/var/www/project1
这个项目的 Nginx 配置是:
server_name www.project1.com project1.com;
root /var/www/project1;
location / {
index index.html;
}
我的目标是使用 nginx,以便当用户输入此网址时:
www.project1.com/project2
Nginx 使用另一个根,我试过:
location /project2 {
root /var/www/project2;
index index.html;
}
但这不起作用。关于如何实现这一目标的任何想法?