最近记性不太好,做网站的一些跳转代码本来存在电脑里。现在却怎么也找不到,很是郁闷。现在放在博客上,给大家一些参考,也方便我寻找。

通过JS跳转

<script type="text/javascript">
    document.location.href = "http://www.saoyucom";
</script>

HTM页面跳转

<meta http-equiv="refresh" content="10; url=https://www.saoyu.com">

动态页面跳转

方法一: PHP 跳转

<?php
header("location: https://www.saoyu.com");
?>
 

方法二: ASP 跳转

<%
response.redirect "https://www.saoyu.com"
%>

带进度条HTM页面跳转

<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
<title>跳转到saoyu.com</title>
</head>
<body>
<form name=loading>
<P align=center><FONT face=Arial color=#0066ff size=2>loading...</FONT>
<INPUT style="PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-WEIGHT: bolder; PADDING-BOTTOM: 0px; COLOR: #0066ff; BORDER-TOP-style: none; PADDING-TOP: 0px; FONT-FAMILY: Arial; BORDER-RIGHT-style: none; BORDER-LEFT-style: none; BACKGROUND-COLOR: white; BORDER-BOTTOM-style: none"
size=46 name=chart>
<BR>
<INPUT style="BORDER-RIGHT: medium none; BORDER-TOP: medium none; BORDER-LEFT: medium none; COLOR: #0066ff; BORDER-BOTTOM: medium none; TEXT-ALIGN: center" size=47 name=percent>
<script language="javascript">
var bar=0
var line="||"
var amount="||"
count()
function count(){
    bar=bar+2
    amount =amount + line
    document.loading.chart.value=amount
    document.loading.percent.value=bar+"%"
    if (bar<99){
        setTimeout("count()",100);
    }else{
        window.location = "https://www.saoyu.com/";
    }
}
</script>
</P>
</form>
</body>
</html>
方法三 .htaccess跳转

首先主机要支持url重写功能,建立txt文件 代码如下 

Redirect /abc.php http://你的链接地址  上传到主机 把文件重命名为 .htaccess

这种方法可以在你做affiliate时,隐藏你的 affiliate链接。