(已解决)Nginx根路径有效,但静态文件路径无效

时间:2019-07-01 07:58:40

标签: nginx

我将服务器设置为config,适用于根路径。在别人身上不起作用。

http://127.0.0.1:83/index.html有效

http://127.0.0.1:83/app/index.html 404未找到

http://127.0.0.1:83/static/index.html 404未找到

server {
    listen 83;
    server_name _;

    location ^~ /app/ {
       root D:;
    }

    location ^~ /static/ {  
        alias D:;  
        autoindex on;
    }

        location / {
            root D:; 
            index test;
            autoindex on;
        }
}

已解决:需要一个斜杠结束,而不是反斜杠。

alias D:;更新为alias D:/

0 个答案:

没有答案