OpenCart 3.0 SSL开启
第一步: 登录opencart后台, 系统管理 》 设置 ,点击 Server 选项卡。 选中【use ssl】
第二步: 前端支持ssl , 编辑根目录的 config.php
define('HTTPS_SERVER', 'http://www.vpsvt.com/'); define('HTTPS_IMAGE', 'http://www.vpsvt.com/image/');
把 http:// 替换为 https://
define('HTTPS_SERVER', 'https://www.vpsvt.com/'); define('HTTPS_IMAGE', 'https://www.vpsvt.com/image/');
然后保存并退出;
第三步: 后端启用ssl , 编辑 admin/config.php 文件
define('HTTPS_SERVER', 'http://www.VPSvt.com/admin/'); define('HTTPS_CATALOG', 'http://www.VPSvt.com/'); define('HTTPS_IMAGE', 'http://www.VPSvt.com/image/');
把 http:// 替换为 https://
define('HTTPS_SERVER', 'https://www.VPSvt.com/admin/'); define('HTTPS_CATALOG', 'https://www.vpsvt.com/'); define('HTTPS_IMAGE', 'https://www.vpsvt.com/image/');
然后修改根目录的 .htacess ,将网站使用 301 重定向到 https . 如果不清楚如何设置的,可点击下方的链接进行设置:
cPanel/Apache 强制开启https访问: https://www.waimaospace.com/reed/386.html