使用rewrite module解决SSL访问问题

原文出自:http://operamasks.blogbus.com/logs/23496723.html

 

Apache + Apusic的集群,client到Apache端采用的是双向SSL连接,Apache到Apusic走的是http。应用的虚拟访问路径为 /test,当访问https://hostname/test/时,Apache能够正常跳转到Apusic,而当访问 https://hostname/test时,Apache不能正常跳转。

 

解决办法:

 

启用Apache的rewrite module(可能需要重新编译) ,将/test访问重定向到该应用下的欢迎页面,配置片段参考如下:

 

LoadModule rewrite_module modules/mod_rewrite.so

rewriteengine on
rewriterule ^/test$ https://hostname/test/index.jsp

你可能感兴趣的:(apache,html,jsp)