我对提交联系表单后如何在另一页上重定向我的页面没有任何想法。
my code is here
<?
header('Location: http://astrologerdelhi.co.in/?page_id=119, true, 301');
?>
but it is not working ?.
Thanks for your help
答案 0 :(得分:0)
您可以尝试wp_redirect()
wp_redirect( 'Location: http://astrologerdelhi.co.in/?page_id=119', 301 );
exit;
wp_redirect()不会自动退出,几乎总是会退出。