Wordpress 404.php 301 重定向但排除一个目录

Wordpress 404.php 301 redirect but exclude one directory

我在 404.php 文件中使用以下代码,将所有 404 错误重定向到主页

<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: ".get_bloginfo('url'));
exit();
?> 

现在,我想从这个重定向中排除一个名为 guest 的目录 我怎样才能做到这一点? 谢谢!

解决方法:

$url = 'https://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];

if (strpos($url,'guest') == false) {
       header("HTTP/1.1 301 Moved Permanently");
header("Location: ".get_bloginfo('url'));
    exit();
} else {
}