使用html文件实现访问http://1.abc.com自动转跳到http://2.abc.com
方法很简单,需要用到的主要是<meta>标签
并且可以设置转跳延时等信息
<html> <head> <title>标题</title> <meta http-equiv="Content-Language" content="zh-CN"> <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312"> <meta http-equiv="refresh" content="5;url=https://www.lvruanhome.com"> </head> <body> <h1>转跳期间页面显示的内容</h1> </body> </html>
其中的第6行
<meta http-equiv="refresh" content="5;url=https://www.lvruanhome.com">中的content="5;url=https://www.lvruanhome.com"为跳转的实现语句,5代表的是访问这个页面后延迟5s再跳转,若不需要等待则将其改为0,后面的url=就是索要跳转的域名或页面。