如何优化wordpress网站的404错误页面

wordpress的404错误页面一般都在网站的模版里边,一般的模版设计者都会在404错误页面上加上自己的网址,所以,找到并且修改404错误页面就显得很重要了。
下边是404.php页面跳转到3种方法:
 
第一种,使用php的header函数
header("location: http://www.software8.co/index.php“); 
//页面跳转到phpcode8首页
 
第二种,使用javascript window.location
<?php $location="http://www.software8.co";
echo " <script> window.location.href=$location </script> "; ?>
 
第三种, 使用html refresh
<?php $location = "http://www.yunfuby.com";
echo "<meta http-equiv='refresh' content='0;url=$location' />"; ?>

你可能感兴趣的:(JavaScript,wordpress)