Online store with SSL
Author: Jay H.
Visited 1426,
Followers 1,
Shared 0
I have WSX5Pro. I am creating an online store and have purchased my SSL certificate. Show do I incorporate this into my webpage?
I want to make sure that my customers are protected when they not only log into the site but when they are inputting their person information. I do have a database setup and will be using that, but I wanted the extra security for my people.
(Someone did write about his/her https:// info but didn't tell how it was solved.)
Posted on the
You don't need to buy a ssl. you can use free ssl on your server or use cloudflare. save some $...
Hello. You must install your SSL on the hosting and set up redirection from HTTP to HTTPS version of the site. You can find out how to do this in the technical support of your hosting provider.
In the site export settings, in the program itself, specify the secure protocol.
Add specified lines to file htaccess for redirect http onto https:
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]