答案 0 :(得分:14)
在404页面中使用元刷新标记
<meta http-equiv="refresh" content="3;URL='http://www.example.com/404.html'" />
它将根据内容值(以秒为单位)和您要重定向的网址
重定向答案 1 :(得分:4)
您应该使用客户端重定向方法来应用适当的延迟。如果您想支持已禁用 JavaScript 的浏览器,只需将META refresh
粘贴到noscript
元素中即可。最好将其放在noscript
元素中,因为搜索引擎会对通常的META refresh
链接给予惩罚。
如果重定向是永久性的,我建议您也使用canonical
标记来保留缺少网页的链接。
这个 JavaScript redirect生成器是一个很好的方法。从那里粘贴的代码。它还有一个IE 8和更低的修复程序来传递HTTP referer,这对流量分析很有用。
<!-- Pleace this snippet right after opening the head tag to make it work properly -->
<!-- This code is licensed under GNU GPL v3 -->
<!-- You are allowed to freely copy, distribute and use this code, but removing author credit is strictly prohibited -->
<!-- Generated by http://insider.zone/tools/client-side-url-redirect-generator/ -->
<!-- REDIRECTING STARTS -->
<link rel="canonical" href="https://example.com/"/>
<noscript>
<meta http-equiv="refresh" content="5;URL=https://example.com/">
</noscript>
<!--[if lt IE 9]><script type="text/javascript">var IE_fix=true;</script><![endif]-->
<script type="text/javascript">
var url = "https://example.com/";
var delay = "5000";
window.onload = function ()
{
setTimeout(GoToURL, delay);
}
function GoToURL()
{
if(typeof IE_fix != "undefined") // IE8 and lower fix to pass the http referer
{
var referLink = document.createElement("a");
referLink.href = url;
document.body.appendChild(referLink);
referLink.click();
}
else { window.location.replace(url); } // All other browsers
}
</script>
<!-- Credit goes to http://insider.zone/ -->
<!-- REDIRECTING ENDS -->
答案 2 :(得分:3)
只需在404错误页面添加一点PHP。
我假设您在htaccess
文件ErrorDocument 404 /error/404/
所以在/error/404
上,您可以在任何地方执行以下操作。
<?php
header("refresh:5; url=/wherever.html");
?>
请务必将5
更改为您的秒数,并wherever.html
更改为您的拍子。