私の設定は簡単です:2つのApacheサーバー
- サーバー 1 : ドメイン (test.com) の「IP1」
- サーバー 2 : ドメインなしの「IP2」
サーバー1のhttpd.confファイルで、アクセスしたい:
- サーバー 1 にインストールされた tomcat に URL : test.com
- virtualhost を持つサーバー 2 の apache に、次の URL を指定します: test.com/server2
Httpd.conf / サーバー 1
RewriteRule ^/server2$ http://'IP2'/web/test.php/ [L]
ProxyPass / ajp://'IP1':PORT/ retry=5
動作しますが、2 番目の URL にはtest.com/server2 ではなくhttp://'IP2'/web/test.php/が表示されます。これを解決するには?