When a user type inn www.mypage/x (which does not exist) the result show an empty body with the header and the footer intact. Most redirect plugins let me redirect one specific URL to another specific URL. What i want is to not only redirect a specific URL, but every non existing URL to a specific URL.
What does this redirecting action called, and how to i do that?
When a user type inn www.mypage/x (which does not exist) the result show an empty body with the header and the footer intact. Most redirect plugins let me redirect one specific URL to another specific URL. What i want is to not only redirect a specific URL, but every non existing URL to a specific URL.
What does this redirecting action called, and how to i do that?
Share Improve this question asked Jul 30, 2019 at 22:45 jan henriksenjan henriksen 11 bronze badge 1- Do you mean redirect on 404 not found? – Tom J Nowell ♦ Commented Jul 31, 2019 at 1:14
1 Answer
Reset to default 2You can use conditional tag is_404()
and wp
action hook to redirect whenever the page can not be found.
functions.php
add_action( 'wp', 'se344018_redirect_404' );
function se344018_redirect_404()
{
if ( is_404() ) {
wp_redirect( home_url() );
//
// wp_redirect( home_url('some/page-slug') );
exit;
}
}
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745281976a4620329.html
评论列表(0条)