我想将我的Apache服务器重定向到在其他服务器上运行的节点服务器 localhost上的端口就像当我输入localhost:80时,它应该重定向我在localhost:3000上运行的节点服务器。
答案 0 :(得分:1)
<VirtualHost *:3000>
ProxyPreserveHost On
ProxyRequests Off
ServerName www.example.com
ServerAlias example.com
ProxyPass / http://localhost:80/example/
ProxyPassReverse / http://localhost:80/example/
</VirtualHost>