Добавьте эту функцию в класс вашего контроллера
public function __call($method, $args){
if ('Action' == substr($method, -6) && $method != 'indexAction') {
// If the action method was not found, forward to the index action
return $this->_forward('index');
}
// all other methods throw an exception
throw new Exception('Invalid method "' . $method . '" called', 500);
}
В этом случае пропущенные действия будут перенаправлены на действие индекса