1024218355 发表于 2023-12-18 16:13:39

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]
查看完整版本: Nginx配置多Vue前端项目转发无效