随拾 Nginx配置反向代理并重写URL 📅 2020-01-22 🔄 2026-05-26 nginx.conf1234567# ...location /api { rewrite /api/(.+)$ /$1 break; proxy_pass http://localhost:3000 ; proxy_redirect off;}# ... 访问:http://localhost/api,会代理到http://localhost:3000,http://localhost:3000路由中无需额外写/api,nginx会自动重写。