1、页面初始化的时候进行重定向,使用<meta>
标签。
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<-- meta标签设置一下content属性,当页面加载时,会在 0 秒后跳转到 home的页面。content="0" 指定了等待的时间(单位为秒),url=home 指定了跳转的目标页面 -->
<meta http-equiv="refresh" content="0; url=home/index.html">
</head>