<div dir="ltr"><div><br></div><div>I was wondering if it's possible to have separate namespaces for '/test' and /test/'. For example:</div><br><div><br></div><div><div>      location /test {</div><div>          root         /usr/share/nginx/test;</div><div>        }<br></div><div>        </div><div>         location /test/ {</div><div>           root         /usr/share/nginx/test-slash;</div><div>           try_files $uri default.txt;</div><div>        }</div></div><div><br></div><div>I tried above configuration, but nginx adds trailing slash to all '/test' requests before they get processed by location directives. So all requests are going to '/test/' location. </div><div><br></div><div>Is there any way to get separate namespace for /test and /test/ ? This not for real world website. I am trying to learn more about location directive. </div><div><br></div><div> - N</div></div>