核心提示:1、js跳转在body标签中插入如下代码script language=document.location = https://www.web1992.com/script2、html跳转在head标...
1、js跳转
在body标签中插入如下代码
<script language='javascript'>document.location = 'https://www.web1992.com'</script>
2、html跳转
在head标签中插入以下代码
<meta http-equiv="refresh" content="0.1;url=https://www.web1992.com">
content="0.1 为该页面在此时间后开始跳转,url=需要跳转的目标地址
3、asp跳转
<% Response.Redirect("https://www.web1992.com") Response.End %>