首页 / 帖子
提交评论之后重定向

请问,在drupal 8中提交评论后重定向到指定页面如何实现?
我尝试了在hook_form_alter中修改#submit

if($form_id=='comment_comment_form'){
 $form['#submit'][] = 'pf_core_comment_comment_form_submit';
}

function pf_core_comment_comment_form_submit(&$form, \Drupal\Core\Form\FormStateInterface $form_state) {
 $form_state->setRedirectUrl('<front>');
}

但这样提交之后还是在原来的页面。

如能提供帮助。
万分感谢

0个答案