我遇到一个关于Nginx的问题确实让我很困惑。 如果我将服务器设置为打击:
server {
listen 80;
server_name _;
root /usr/project/exchange/front/build;
index index.html;
location = /{
try_files $uri $uri/ =404;
}
}
如果我在服务器中添加位置/。页面显示错误。
server {
listen 80;
server_name _;
root /usr/project/exchange/front/build;
index index.html;
location = /{
try_files $uri $uri/ =404;
}
location / {
proxy_pass http://127.0.0.1:8088;
}
}
真的让人感到困惑。 Nginx匹配来自= /到/的网址?为什么添加位置/导致错误?