Jump to content

Is there a way to force https?


Mister Denial

Recommended Posts

Hi folks,

 

apparently my PS template has mixed elements on the checkout page, like the menu navigation and the footer links, as well as the direct link to the items currently in the basket.

 

In both IE and Chrome this causes scary warning messages to pop-up for customers.

 

So my thought was, is there a way to transform all http links into https links? Like adding a line to htaccess to force all links on that specific page to become https rather than regular links?

 

Your helps is much appreciated!

 

Best regards,

 

Dan

Link to comment
Share on other sites

  • 2 weeks later...

Hello!

 

You can use https, but you need to buy a SSL certificate and have a dedicated IP for your site. After that you can redirect your pages to HTTPS:

 

RewriteEngine On

RewriteCond %{SERVER_PORT} 80

RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]

 

But you should first identify the problem or give a more detailed description,

because getting HTTPS will not necessarily resolve your issue.

 

Regards,

 

The CartExpert Team

Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...