如何使用Apache httpd将请求从一个特定端口转发到另一个端口?

时间:2019-02-15 07:03:49

标签: apache httpd.conf

我有http://localhost/services/pdf/module/generate/

的请求
http://localhost:8080/services/pdf/module/generate/

要在httpd.conf中写些什么来做到这一点。

1 个答案:

答案 0 :(得分:0)

您可以使用以下重定向规则将请求从特定端口转发到另一个Apache httpd。您可以根据需要调整端口。

RewriteEngine On
RewriteCond %{SERVER_PORT} ^80
RewriteRule ^/(.*) http://%{HTTP_HOST}:8080/$1 [L,R]