WebSite X5Help Center

 
Jay H.
Jay H.
User

Online store with SSL  en

Author: Jay H.
Visited 1183, 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
3 ANSWERS - 1 USEFUL
Adrian B.
Adrian B.
User

You don't need to buy a ssl. you can use free ssl on your server or use cloudflare. save some $...

Read more
Posted on the from Adrian B.
Aleksej H.
Aleksej H.
Moderator

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.

Read more
Posted on the from Aleksej H.
Andrzej K.
Andrzej K.
User

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]

Read more
Posted on the from Andrzej K.