Если вы создаете новый модуль, вы можете добавить реализацию hook_form_alter для проверки всех форм и изменить перенаправление отправки на соответствующие формы
/*
Implementation of hook_form_alter this method hooks into the submission of story forms
and redirects appropriately
*/
function my_redirect_module_form_alter(&$form, &$form_state, $form_id) {
//some code to filter the forms
if(!$form['#node']->type=='story') {return;}
//otherwise this is a for we want to fangle
$form_state['redirect'][0]='http://localhost/drupal_new/xyz.php';
//this should leave all the ?q=node/xx untouched in $form_State['redirect'][1]
}
Код записан из памяти, так что YMMV ...