在magento中更改wishlist网址

时间:2012-04-06 17:50:41

标签: magento

我有特殊要求。 可以将整个心愿单链接指向不同的东西吗? 应该用不同的名称替换所有东西。 因此,而不是demo.store.com/wishlist是demo.store.com/scrapbook 如果可能的话,我应该从哪里开始看?

1 个答案:

答案 0 :(得分:3)

您可以将其添加到app/etc/local.xml

<config>
    <!-- other stuff -->
    <frontend>
        <routers>
            <wishlist>
                <args>
                    <frontName>scrapbook</frontName>
                </args>
            </wishlist>
        </routers>
    </frontend>
    <!-- other stuff -->
</config>