我已经安装了Opencart的最新版本(3.0.2.0)。它显示一些链接为https,即使没有安装SSL证书并且从管理仪表板禁用了ssl url。
当我查看“C:\ xampp \ htdocs \ opencart \ catalog \ controller \ common \ footer.php”时,我发现有些网址启用了ssl,如下所示
$data['voucher'] = $this->url->link('account/voucher', '', true);
$data['affiliate'] = $this->url->link('affiliate/login', '', true);
$data['special'] = $this->url->link('product/special');
$data['account'] = $this->url->link('account/account', '', true);
$data['order'] = $this->url->link('account/order', '', true);
$data['wishlist'] = $this->url->link('account/wishlist', '', true);
$data['newsletter'] = $this->url->link('account/newsletter', '', true);
如何在不编辑代码的情况下运行这些网址
答案 0 :(得分:0)
更改config.php和admin / config.php文件中的HTTPS_SERVER。 (将https://
更改为http://
)