[DevOps] Nginx-url-解析顺序

67 阅读1分钟

前端路由中有路径为:http://127.0.0.1:8088/download_tasks,刷新页面,报错:nginx 404,nginx 配置如下:

    location ^~ /download/ {
        alias /data/export/;
        gzip on;
    }

    location / {
        root /data/fe_static/;
        try_files $uri $uri/ /index.html;
    }