Apache Tomcat 8.5 HTTP (80) to HTTPS (443) Redirect HOW-TO?
In a standalone Apache Tomcat (8.5.x) HTTP Server, how can configure it so if a user types www.domain.com, they will be automatically forwarded to https://www.domain.com.
The 2 step method of including the following in your WEB-INF/web.xml before the closing tag
HTTPSOnly
/*
CONFIDENTIAL
and setting the [Tomcat_base]/conf/server.xml connector settings:
has not worked? Any direction would be greatly appreciated.
Additional details: I'm using Spring 4 MVC as well (don't think it matters however :-) )