Saya telah mengkonfigurasi VirtualHost
example.com saya untuk mem -proxy semua permintaan ke server Tomcat
ProxyPass / http://localhost:8088/app
ProxyPassReverse / http://localhost:8088/app
Ini berfungsi dengan baik untuk URL seperti example.com/page , tetapi untuk example.com dan example.com/ Saya mendapatkan respons pengalihan ini, yang jelas tidak menghasilkan apa-apa.
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
...
Apa yang bisa saya lakukan untuk memperbaikinya? Lebih disukai di konfigurasi Apache.
Saya menggunakan Apache 2 dan Tomcat 7
apache-2.2
tomcat
reverse-proxy
rewrite
Bart van Heukelom
sumber
sumber
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.