我正在尝试将重写和代理通行证结合起来,并且在重写时遇到问题。这是我所拥有的
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.world.net
RewriteRule %{HTTP_HOST} http://newexample.newworld.net:7802/apex/f?p=208 [R,P]
ProxyPass / http://newexample.newworld.net:7802/
proxypass 正在工作,但我不知道如何获得初始重定向。因此,如果用户输入 example.world.net/apex/f?p=208 它会转到 newexample.newworld.net:7802/apex/f?p=208 并屏蔽 url。
但是,如果 apex/f?p=208 不在 URL 中,我需要让 example.world.net 重定向到 example.world.net/apex/f?p=208。