【发布时间】:2010-11-27 13:06:56
【问题描述】:
我已将 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/
?>
为什么协议不同?
// 罗兰
【问题讨论】: