如何在magento中重写签出购物车url

如何在magento中重写签出购物车url,magento,url-rewriting,Magento,Url Rewriting,我想将我的checkout/cart url重写为checkout/cartnew。我使用config.xml尝试过,但没有成功。 我的密码是:- <?xml version="1.0"?> <config> <global> <rewrite> <mynamespace_mymodule_checkout_cart> <from>

我想将我的checkout/cart url重写为checkout/cartnew。我使用config.xml尝试过,但没有成功。 我的密码是:-

<?xml version="1.0"?>
<config>
    <global>
        <rewrite>
            <mynamespace_mymodule_checkout_cart>
                <from>
                    <![CDATA[ #^/checkout/cart# ]]>
                </from>
                    <to>/checkout/cartnew</to>
            </mynamespace_mymodule_checkout_cart>
        </rewrite>
    </global>
</config> 

/结帐/购物车新
请建议我怎么做