This snippet shows how to redirect form after submitting and saving in Drupal 7. You can also use Rules module for this.
Source code viewer
function HOOK_form_alter(&$form, &$form_state, $form_id) { if($form_id == 'form_id') { //add function to complete to at the end of array $form['actions']['submit']['#submit'][] = 'HOOK_form_id_submit_handler'; } } function HOOK_form_id_submit_handler($form, &$form_state) { //redirect to this path $form_state['redirect'] = 'some/path/to/redirect/to'; }Programming Language: PHP