シナリオ:
Tomcat への Apache リバース プロキシ:
https://sub-domain.example.com:8080/app
これに:
https://sub-domain.example.com/app
アプリに解決されると、次のように追加されます。
https://sub-domain.example.com/app/somedir/some.jsp
リクエスト処理プロセスで最後の追加を削除して、エンドユーザーに次のように表示する方法はありますか?
https://sub-domain.example.com/app
現在の Apache 構成:
ServerName sub-domain.example.com
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^/(.*) https://%{SERVER_NAME}/$1 [L,R]
<VirtualHost *:443>
SSLEngine on
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW
SSLCertificateFile /etc/pki/tls/certs/server.crt
SSLCertificateChainFile /etc/pki/tls/certs/VendorCA.crt
SSLCertificateKeyFile /etc/pki/tls/private/server.key
ServerName sub-domain.example.com
ServerAdmin admin@sub-domain.example.com
ErrorLog logs/sub-domain.example.com-error_log
CustomLog logs/sub-domain.example.com-access_log common
ProxyPass /app http://localhost:8080/app/
ProxyPassReverse /app http://localhost:8080/app/
</VirtualHost>
どんな助けでも本当に感謝します。