<?php $daurl = Mage::getUrl('showdown/index/vote',array('c', 'd')) ?>
生成此结果
http://desbest.uk.to/clients/magentofull/index.php/showdown/index/投票/0/c/1/d
但我不希望它是vote/0/c/1/d
相反,我想要vote/c/d
请帮忙!
您可以尝试以下操作:
<?php $daurl = Mage::getUrl('showdown/index/vote', array('c' => 'd')) ?>