文章摘要:html如何实现301跳转 html 301跳转
html实现301跳转的示例: 在对应的html文件中添加一下代码: <head> <!-- […]
html实现301跳转的示例:
在对应的html文件中添加一下代码:
<head>
<!-- 以下方式只是刷新不跳转到其他页面-->
<meta http-equiv="refresh"content="10">
<!-- 以下方式定时转到其他页面-->
<meta http-equiv="refresh"content="5;url=hello.html">
</head>