第一种代码
在主题的404文件(404.php)文件加入以下代码:
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: ".get_bloginfo(‘url’));
exit();
?>
如果没有404文件,可以在主题包文件根目录创建一个404.php文件,然后把代码复制进去:
第二种代码
在主题的404文件(404.php)文件加入以下代码:
<?php
$lan = substr($HTTP_ACCEPT_LANGUAGE,0,5);
print("<meta http-equiv='refresh' content = '5;URL = https://www.qincewangluo.com/'>");
?>
如果需要修改跳转时间,请修改content = ‘5,代表5秒跳转,可以修改5这个值