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 Jha1 Answer
Reset to default 0You 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
版权声明:本文标题:404 error - Redirect search.php to 404.php 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744750144a2623127.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论