html 网页跳转代码

html 网页跳转代码,第1张

html 网页跳转代码 将以下代码存为默认首页文件如index.html,放在根目录下即可。



不隐藏转向后地址
<html>
<head>
<title>Redirect</title>
<meta http-equiv="refresh" content="0;url=new site">
</head>
<body>
</body>
</html>
隐藏转向后地址
<html>
<head>
<title>Redirect</title>
</head>
<frameset framespacing="0" border="0" rows="0" frameborder="0">
<frame name="main" src="new site" scrolling="auto" noresize>
</frameset>
</html>

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/web/610634.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-14
下一篇 2022-04-14

发表评论

登录后才能评论

评论列表(0条)

保存