How to redirect to A.com/status 
Is it posible to double redirect ? for example I want go to A.com/status and to one of my controller(Update)  
public function update_order(){
    $nom = 'status'; 
    $data=  array(
        'status' => 'confirmed' 
        );
    $this->data->simpanupdateorder($nom,$data);
    **redirect('http://A.com/'echo $nom);**
}
 
     
    