最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

urls - Redirect non existing page to frontpage

programmeradmin2浏览0评论

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
Add a comment  | 

1 Answer 1

Reset to default 2

You 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;
    }
}
发布评论

评论列表(0)

  1. 暂无评论