admin管理员组

文章数量:1390555

anyone knows how to redirect search.php to 404.php when no search results found?

I've got more than 1000s of soft 404 errors due to this search feature. I just want to redirect nothing found results to 404.php. Thanks in advance

anyone knows how to redirect search.php to 404.php when no search results found?

I've got more than 1000s of soft 404 errors due to this search feature. I just want to redirect nothing found results to 404.php. Thanks in advance

Share Improve this question asked Feb 13, 2020 at 4:44 Ankit JhaAnkit Jha
Add a comment  | 

1 Answer 1

Reset to default 0

You can try to use the wp_query->set_404 and status_header in a condition if no results found.

  global $wp_query;
  $wp_query->set_404();
  status_header(404);

本文标签: 404 errorRedirect searchphp to 404php