隐性 URL 转发代码

隐性转发的优势体现于无需跳转和变动浏览器地址栏,即可实现转发。

<!DOCTYPE html>
<html lang="zh-CN">
<head> 
<meta charset="utf-8">
<title>这个是网页的标题</title> 
</head> 
<frameset framespacing="0" border="0" rows="0" frameborder="0"> 
<frame name="main" src="这里写你要转发的网址" scrolling="auto" noresize> 
</frameset> 
</html>
<frameset rows="100%">
  <frame src="http://www.example.com/">
  <noframes>
    <body>Please follow <a href="http://www.example.com/">link</a>.</body>
  </noframes>
</frameset>
文章来自:chenxuhua.com
原文地址:https://www.cnblogs.com/chenxuhua/p/frame-redirects-code.html