<?php $the_host = $_SERVER['HTTP_HOST']; $the_url = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : ''; $the_url = strtolower($the_url); $pos = strpos($the_url, "?"); if($pos !== false) { header('HTTP/1.1 301 Moved Permanently'); header('Location:https://www.3yyy.top/');//可以设定您需要跳转的地址 } ?>
将如下代码添加到模板的公共文件最上方即可,比如添加到wp-blog-header.php 添加后别人使用搜索功能时程序会自动过滤掉?号,来达到禁用搜索功能的目的。