客户帐户网址重写

时间:2013-01-03 22:49:08

标签: magento e-commerce

我是Magento的新手。什么是从中显示客户帐户URL的最佳方式 http://www.mydomain.com/customer/account/

http://www.mydomain.com/customer或/如果我想让人注册,请注册?

1 个答案:

答案 0 :(得分:1)

您可以尝试使用

创建自定义模块
<global>
  <rewrite>
    <mynamespace_mymodule_customer>
        <from><![CDATA[#^/customer#]]></from>
        <to>/customer/account</to>
        <complete>1</complete>
    </mynamespace_mymodule_customer>
    <mynamespace_mymodule_register>
        <from><![CDATA[#^/register#]]></from>
        <to>/customer/register</to>
        <complete>1</complete>
    </mynamespace_mymodule_register>
     </rewrite>
</global>

请参阅Custom URL for Magento's basket page