我运行 apache2 作为其他 apache2 服务器的代理,这些服务器监听随机创建的端口。所以我需要正确重定向。我制作了接下来的 2 个重定向模型。
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
有谁知道,我怎样才能正确重定向到端口?或第一种方法的正确语法。
谢谢你。