SSL ecommerce redirect after checkout to normal http://

Permalink
Hi Folks,

i setup my ecommerce solution with SSl and all is working fine during checkout. In the setting I changed use SSL to true and put in the correct https path.

But after the checkout, when I see the "Thank you"-Message I would like to continue browsing on the normal http:// site without SSL But the base URL is not changing back to http:// It stays with the https://

Does anyone know a solution how to redirect to normal http:// after checkout?

Thanks for help.

Daniel

 
jordanlev replied on at Permalink Reply
jordanlev
You could try adding a rewrite rule to your site's .htaccess file (add it above the concrete5 stuff if you have pretty url's enable):
RewriteRule https://yourdomain.com/checkout/finishhttp://yourdomain.com/checkout/finish... [R,L]


I would double-check the URL for the "finish" page (does it have "www." in front of the domain? Is it "/index.php/checkout/finish" vs. just "/checkout/finish", or something else entirely?) -- and replace the urls in the rewrite rule above with what the actual exact address is.