正文Nginx请求转发IP云V管理员/2022-08-11/5 阅读 08/11提示:扫一扫查出行【扫一扫了解最新限行尾号】复制提示 1.比如说我要将127.0.0.1/topics上的所有请求转发到xxx:xxx/上修改 sudo vim /etc/nginx/nginx.conf server { listen 80; server_name 127.0.0.1; location /topics { #root html; #index index.html index.htm; proxy_pass http://xxx:xxx; } }