server { listen 80; server_name _; charset utf8; root /var/nginx/html; location / { index index.html index.php; } location /api { rewrite ^/api/(.*)$ /$1 break; // 用正则匹配,去掉 api 前缀,$1 是正则中的第一串。后端的接口不需带 api。 proxy_pass http://127.0.0.1:8080; }}