使用html实现访问https://www.52lc.top自动转跳到https://52lc.top
方法很简单,需要用到的主要是<meta>标签
并且还可以设置转跳延时等信息
实现代码案例:
<html> <head> <title>这是标题-琳晨Blog</title> <meta http-equiv="Content-Language" content="zh-CN"> <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8"> <meta http-equiv="refresh" content="5;url=https://52lc.top"> <!--跳转代码--> </head> <body> <h1>转跳期间页面显示的内容</h1> </body> </html>
其中的第6行中的<meta http-equiv="refresh" content="5;url=https://52lc.top">为跳转的实现代码,5代表的是访问这个页面后延迟5s再跳转,若不需要等待则将其改为0,后面的url=就是索要跳转的域名或页面。
发布评论