我有一个表单可以在提交时重定向并打开“谢谢”页面,但我不希望任何人通过 URL 访问此页面。该页面应该可以从表单的重定向中访问。问题是我试图从 开始.htaccess
,但它不起作用。
当前网址:mySite.com/thank-you
我想将其掩盖为:mySite.com/
我在function.php中使用了这段代码:
/**
* Form ---> Thank you page
*
*/
add_action( 'wp_footer', 'mycustom_wp_footer' );
function mycustom_wp_footer() {
?>
<script type="text/javascript">
document.addEventListener( 'wpcf7mailsent', function( event ) {
if ( '6881' == event.detail.contactFormId ) { // Sends sumissions on form idform to the thank you page
location = '/thank-you/';
} else { // Sends submissions on all unaccounted for forms to the third thank you page
// Do nothing
}
}, false );
</script>
<?php
}
我不知道如何使它成为可能。有人能帮助我吗?