Hi, I have the following issue:
Install an SSL certificate on a Payara server.
I deployed an application with the following restriction:
<security-constraint>
<web-resource-collection>
<web-resource-name> All </ web-resource-name>
<url-pattern> / * </ url-pattern>
</ web-resource-collection>
<user-data-constraint>
<transport-guarantee> CONFIDENTIAL </ transport-guarantee>
</ user-data-constraint>
</ security-constraint>
When I access the url of the application using the https protocol for example:
The application works as expected, but when I use the url with the www
The server redirects me to:
What I need is, when someone uses:
How can I achieve this?