0

我有一个特别的要求。可以将整个愿望清单链接指向不同的东西吗?一切都应该替换为不同的名称。因此,不是 demo.store.com/wishlist 而是 demo.store.com/scrapbook 如果可能的话,我应该从哪里开始寻找?

4

1 回答 1

3

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

<config>
    <!-- other stuff -->
    <frontend>
        <routers>
            <wishlist>
                <args>
                    <frontName>scrapbook</frontName>
                </args>
            </wishlist>
        </routers>
    </frontend>
    <!-- other stuff -->
</config>
于 2012-04-07T15:36:12.190 回答