News:

Support the VirtueMart project and become a member

Main Menu

Ajout au panier impossible

Started by Trucmuche, December 18, 2017, 11:47:25 AM

Previous topic - Next topic

Studio 42

Check the console, and use the right https link.
Add a rewrite rule to only allow https in your .htaccess.
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]


You have a site that have security check about crosss domains.
So you need another rules to always use www or not. Eg.

RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]


If you do this, then your site have the green cadena