add_filter( 'comment_post_redirect', 'post_redirect', 10, 2 );
function post_redirect( $location, $comment ){
// filter...
$comment = isset($_SERVER['HTTP_REFERER'])? $_SERVER['HTTP_REFERER']:'redirect-form.html';
header("Location: $comment");
exit();
return $comment;
}