Html实现404自动跳转
因为站点调整,原先的www.361way.com调整为了blog.361way.com,虽然已经在搜索引擎侧做了网站改版规则,不过就咱这小破站也不指望搜索引索重视,估计之前收录的内容N久才会更新掉,尤其像百度这种破烂引擎。所以就手动搞个404页面跳转到blog.361way.com的页面。
新建一个404.html页面,内容如下:
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <meta http-equiv="refresh" content="3;url=https://blog.361way.com">
7 <title>页面不存在</title>
8</head>
9<body>
10 <p>原 www.361way.com 页面已改版成 blog.361way.com,3秒后自动跳转到博客首页!</p>
11</body>
12</html>
上面content后面的3对应的是等待时间,单位是秒。URL跟的是要跳转的页面,只需要将些页面指定为404报错要显示的页面即可。
当然这个页面是比较简单的, 如果想要美观,还可以在此基础上再调整。
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/2023/10/404-jump.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.