Nginx配置多Vue前端项目转发无效
server {listen 20001;
server_name localhost;
location /portal/ {
roothtml/portal;
indexindex.html index.htm;
try_files $uri $uri/ /index.html;
}
location /application/ {
root html/application;
indexindex.html index.htm;
try_files $uri $uri/ /index.html;
}
location /screen/ {
root html/screen;
indexindex.html index.htm;
try_files $uri $uri/ /index.html;
}
}
页:
[1]