Nginx: rewrite & location


 

        location ~ /Vend1/$ {
            return 201 'First RegExp $uri';
        }
        location ~* /Vend1/(.*)$ {
            return 202 'IgnoreCase RegExp $uri';
        }
        location ^~ /Vend1/ {
            return 203 'Forbidden RegExp $uri';
        }
        location /Vend1/Vend2 {
            return 205 'Longest Prefix Match $uri';
        }
        location /Vend1 {
            return 206 'Shorted Prefix Match $uri';
        }