标签: nginx nginx-location
我正在尝试理解location指令的行为,该指令在被省略时仍然可以正常工作。给定以下内容并假定目录/ bar中存在一个index.html:
server { listen 80; server_name foo.com; root /bar; #location = / { # try_files /index.html =404; #} }
为什么仍然可以访问以下内容: