我将服务器设置为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:/