我运行apache2作为其他apache2服务器的代理,这些服务器监听随机生成的端口。 所以我需要正确重定向。我制作了下两个重定向模型。
ProxyPassMatch ^(/.*)$ http://`127.0.0.1`127.0.0.1:$1
#it always give syntax error
和
RewriteEngine On
RewriteRule /(.*) https://`127.0.0.1`:$1 [R]
#this nothing do
有没有人知道,我该如何正确地重定向到端口?或者更正第一种方法的语法。
谢谢。