Show home page when no search results are found wordpress blog

Discussion in 'WordPress' started by neeshu, Dec 7, 2011.

  1. #1
    Hi,
    At times when users make a search on my wordpress site there are no results found, I wish to show them home page in that case how do I do that.
     
    neeshu, Dec 7, 2011 IP
  2. mhovingh

    mhovingh Well-Known Member

    Messages:
    341
    Likes Received:
    13
    Best Answers:
    1
    Trophy Points:
    145
    #2
    <?php
       header("Status: 301 Moved Permanently");
       header("Location:http://www.yourdomain.com/");
       exit();
    ?>
    PHP:
    Put that into a 404.php file within your theme folder, overwriting any existing one (save a backup of the original just in case). Replace yourdomain.com with your home page URL. Make sure to do this again if you ever change themes.
     
    mhovingh, Dec 8, 2011 IP
    neeshu likes this.
  3. neeshu

    neeshu Well-Known Member

    Messages:
    648
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    130
    #3
    thanks for the help :)
     
    neeshu, Dec 11, 2011 IP