问题描述
我有一个网站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下的无法访问.求解决之道
问题解答
回答1: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;}
}