Opencart https url principal

时间:2015-01-26 20:49:22

标签: opencart opencart2.x

激活商店中的安全证书,它运行良好,但仍然是主网址http而不是https,并且当输入产品时,如果出现https或点击徽标,则更改config.php中的网址。

我能做到吗?

1 个答案:

答案 0 :(得分:0)

好吧,最后我做了以下事情:

进入.htaccess文件写这个

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

这就是全部。