我已經讓Magento控制器重定向到url,但由於某些原因url是錯誤的。Magento控制器重定向如何工作?
我的控制器:
public function indexPostAction()
{
// Do stuff here
$this->_redirect('module/controllername');
}
該控制器重定向到URL模塊/ controllername/indexPost,但我已經重定向它的模塊/ controllername這是我的模塊的我的索引頁。爲什麼它沒有重定向到正確的地址?
thanx的幫助下,我居然在我的代碼有錯誤,以便從未達到重定向代碼,但它沒不會向magento日誌中拋出任何錯誤,所以在調試代碼之前我沒有發現。 – newbie