重定向到https的其他域

时间:2012-11-24 03:20:00

标签: java spring spring-security security

我正在使用Spring安全性,我想强制HTTPS为几个网址。但是我的证书是在子域名上。

例如,如果他们点击http:// www .mydomain.com / myaccount,我希望将其重定向到https:// 安全 .mydomain。 COM /我的帐户

使用弹簧安全性实现这一目标的最佳方法是什么?

1 个答案:

答案 0 :(得分:0)

不确定是否是最有效的方式

if(URL.getProtocol().equalsIgnoreCase("https"))
 then replace "www." with " secure." 

请参考how to replace www in url了解第二部分