It is simply a change in the way the client and server interact over the network with each other. This is a server configuration issue. Just configure the server to use HTTPS. No changes to the logic / code stream are required, you only need to update any absolute URL in your webapp accordingly (in HTML links, form actions, etc.). Therefore, if your form action, for example, http://www.example.com/myForm.html instead of myForm.html , and the open page does not open HTTPS, you need to change the form action to the HTTPS URL.
As for the server configuration, it is not clear which server you are using, so here is an example of Tomcat that is designed to configure the server to use HTTPS (SSL): http://tomcat.apache.org/tomcat-6.0-doc/ssl-howto. html Any self-respecting server sends this information.
source share