すべてのリクエストをTomcatサーバーにプロキシするようにVirtualHost
example.comを設定しました
ProxyPass / http://localhost:8088/app
ProxyPassReverse / http://localhost:8088/app
これは、のようなURLの罰金に動作しますexample.com/pageたがために、example.comとexample.com/私はこのリダイレクト応答、何も明らかにリードを取得します。
HTTP/1.1 302 Moved Temporarily
Date: Wed, 06 Jul 2011 21:13:37 GMT
Server: Apache-Coyote/1.1 <-- the redirect comes from tomcat
Location: http://example.com/app/ <-- nonsense
...
それを修正するにはどうすればよいですか?できれば、Apacheの設定で。
Apache 2とTomcat 7を使用しています
If the first argument ends with a trailing /, the second argument should also end with a trailing / and vice versa. Otherwise the resulting requests to the backend may miss some needed slashes and do not deliver the expected results.