On Sat, Dec 13, 2014 at 9:00 AM, neubyr <[email protected]> wrote: > > I was wondering if it's possible to have separate namespaces for '/test' and > /test/'. For example: > > > location /test { > root /usr/share/nginx/test; > } > > location /test/ { > root /usr/share/nginx/test-slash; > try_files $uri default.txt; > } > > 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. > > 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. >
try reloading your nginx server. Either that or you have directory /usr/share/nginx/test/test. (or browser's cache) _______________________________________________ nginx mailing list [email protected] http://mailman.nginx.org/mailman/listinfo/nginx
