文章摘要:浏览器301跳转怎么弄 网页301跳转
浏览器301跳转的方法: 在对应的html文件中添加以下代码: <head> <!--&nb […]
浏览器301跳转的方法:
在对应的html文件中添加以下代码:
<head>
<!-- 以下方式只是刷新不跳转到其他页面-->
<meta http-equiv="refresh"content="10">
<!-- 以下方式定时转到其他页面-->
<meta http-equiv="refresh"content="5;url=hello.html">
</head>