Nginxのproxy_passを使用してプレフィックスを削除する方法
URIの先頭のプレフィックスを削除する方法:location /prefix/ { rewrite ^/prefix/(.*) /$1 break; proxy_pass http://upstream_server; }>>More
URIの先頭のプレフィックスを削除する方法:location /prefix/ { rewrite ^/prefix/(.*) /$1 break; proxy_pass http://upstream_server; }>>More