WAS 7.0 に SSL 証明書をインストールし、httd.conf ファイルの下で IBM HTTP Server を指定しました。以下の書き換えメカニズムも実装しましたが、特定のコンテキスト ルート アプリケーションの http 要求から https にリダイレクトすることはまだできません。
私に提案してください。
httpd.conf ファイルの下の行の下に実装されています。
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule ibm_ssl_module modules/mod_ibm_ssl.so
<IfModule mod_ibm_ssl.c>
Listen 443
<VirtualHost *:443>
SSLEnable
SSLProtocolDisable SSLv2
ErrorLog logs/error_log
CustomLog logs/access_log common
RewriteEngine On
RewriteOptions Inherit
</VirtualHost>
</IfModule>
KeyFile "/IBM/HTTPServer/testSSL/testkey.kdb"
SSLStashFile "/IBM/HTTPServer/testSSL/testkey.sth"
RewriteEngine on
RewriteRule ^/testPOC/(.*)$ https://localhost/testPOC/$1