第一步: 登录OpenCart后台, 系统管理 》 设置 ,点击 Server 选项卡。 选中【use SSL】
第二步: 前端支持SSL , 编辑根目录的 config.php
define('HTTPS_SERVER', 'http://opencart.inmotiontesting.com/'); define('HTTPS_IMAGE', 'http://opencart.inmotiontesting.com/image/');
把http://替换为https://
define('HTTPS_SERVER', 'https://opencart.inmotiontesting.com/'); define('HTTPS_IMAGE', 'https://opencart.inmotiontesting.com/image/');
修改后保存.
第三步: 后端启用SSL , 编辑 admin/config.php 文件
define('HTTPS_SERVER', 'http://opencart.inmotiontesting.com/admin/'); define('HTTPS_CATALOG', 'http://opencart.inmotiontesting.com/'); define('HTTPS_IMAGE', 'http://opencart.inmotiontesting.com/image/');
把http://替换为https://
define('HTTPS_SERVER', 'https://opencart.inmotiontesting.com/admin/'); define('HTTPS_CATALOG', 'https://opencart.inmotiontesting.com/'); define('HTTPS_IMAGE', 'https://opencart.inmotiontesting.com/image/');