我有http://localhost/services/pdf/module/generate/
到
http://localhost:8080/services/pdf/module/generate/
要在httpd.conf
中写些什么来做到这一点。
答案 0 :(得分:0)
您可以使用以下重定向规则将请求从特定端口转发到另一个Apache httpd。您可以根据需要调整端口。
RewriteEngine On
RewriteCond %{SERVER_PORT} ^80
RewriteRule ^/(.*) http://%{HTTP_HOST}:8080/$1 [L,R]