Change wishlist url in magento [closed]

2020-03-08 06:33发布

I have a special request. It is possible to point the whole wishlist links to something different? Everything should be replaced with a different name. So instead of demo.store.com/wishlist to be demo.store.com/scrapbook Where should I start to look, if it's possible at all?

标签: magento
1条回答
Luminary・发光体
2楼-- · 2020-03-08 07:04

You can add this to app/etc/local.xml:

<config>
    <!-- other stuff -->
    <frontend>
        <routers>
            <wishlist>
                <args>
                    <frontName>scrapbook</frontName>
                </args>
            </wishlist>
        </routers>
    </frontend>
    <!-- other stuff -->
</config>
查看更多
登录 后发表回答