Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么区别:
location = /abc {}
和
locaton ~ /abc {}
location = /abc {}匹配确切的 uri/abc
/abc
location ~ /abc 是 uri 上的正则表达式匹配,表示任何包含 的 uri /abc,您可能想要:location ~ ^/abc对于以 uri 开头的/abc
location ~ /abc
location ~ ^/abc