取决于“重定向”的含义。
如果您想要404,这将完成以下工作:
add_filter(\'wp_die_handler\',\'custom_404_die_handler\');
function custom_404_die_handler() {
global $wp;
$wp->handle_404();
load_template(get_404_template());
die();
}
如果你真的想把它们重定向到某个地方,那么你可以这样做,但这并不完全是“404”。
add_filter(\'wp_die_handler\',\'custom_404_die_handler\');
function custom_404_die_handler() {
wp_safe_redirect( get_home_url() );
die();
}