将这些添加到您的函数中。php
add_action( \'template_redirect\', \'custom_redirect\', 1 );
function custom_redirect() {
$direction = get_permalink( 12 ); // Or whatever the page_id is ...
if ( is_404() ) wp_redirect( $direction );
}
在那里。但它仍然没有跟踪404错误。除非在计算所有重定向的函数中或在目标页上添加更多特定代码以达到相同目的。