一,套嵌式
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>网站标题</title>
<frameset framespacing="0" border="0" rows="0" frameborder="0">
<frame name="main" src="https://note.lisai.cc/" scrolling="auto" noresize></frameset>
</head>
<body></body>
</html>
二,直接跳转
<meta http-equiv="refresh" content="0; url=https://note.lisai.cc/">
<title>网站标题</title>
三,JS直接跳转
<title>网站标题</title>
<script language="javascript">
top.location='https://note.lisai.cc/';
</script>
--end--