Nginx 路径匹配

Posted by icoding168 on 2020-05-02 00:46:39

分类: Nginx   软件安装  

location = /abc {} matches the exact uri /abc

location ~ /abc is a regex match on the uri, meaning any uri containing /abc, you probably want: location ~ ^/abc for the uri begining with /abc instead