我已将 magento 配置为使用 SSL 链接..
基本 URL https://sub.domain.com/ 基本链接 URL {{secure_base_url}} 基础... URL {{secure_base_url}}.../ 在前端使用安全 URL:是 在后端使用安全 URL:是
前端我有一些使用 Mage::getUrl([...]) 构建的自定义链接
<?php
// link to CMS page
echo Mage::getUrl('help'); //-> http://sub.domain.com/help/
// link to customer account
echo Mage::getUrl('customer/account'); //-> httpS://sub.domain.com/customer/account/
?>
为什么协议有差异?
// 罗兰