html實現301跳轉的示例:
在對應的html文件中添加一下代碼:
<head><!-- 以下方式只是刷新不跳轉到其他頁面--><meta http-equiv="refresh"content="10"><!-- 以下方式定時轉到其他頁面--><meta http-equiv="refresh"content="5;url=hello.html"></head>
<head>
<!-- 以下方式只是刷新不跳轉到其他頁面-->
<meta http-equiv="refresh"content="10">
<!-- 以下方式定時轉到其他頁面-->
<meta http-equiv="refresh"content="5;url=hello.html">
</head>