Rumah > Soal Jawab > teks badan
我有一个网站www.eee.com
,还有两个单页面应用.一个react,一个vue的.
我想把其中一个单页面应用挂载到根目录,也就是wwww.eee.com
下,把另外一个挂载到www.eee.com/admin
下.
目前conf.d
目录里的default.conf
配置如下
server {
listen 80;
server_name localhost;
location / {
root /home/workspace/vue;
index index.html;
try_files $uri /index.html;
}
location /admin {
root /home/wordspace/admin;
index index.html;
try_files $uri /index.html;
}
}
根目录下的能正常访问,但是wwww.eee.com/admin
下的无法访问.求解决之道
高洛峰2017-04-17 15:24:37
server {
listen 80;
server_name localhost;
location /admin {
root /home/wordspace/admin;
index index.html;
try_files $uri /index.html;
}
location / {
root /home/workspace/vue;
index index.html;
try_files $uri /index.html;
}
}