首页 > 网站应用 > 公布三段隐藏销售链接的代码

公布三段隐藏销售链接的代码

2010年8月7日 发表评论 阅读评论

这里是三段隐藏销售链接的代码,非常有好处,不知道的朋友自己去研究吧。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>vancl</title>
<meta name="robots" content="noindex,nofollow">
<script>window.location="Your Links";</script>
<meta http-equiv="refresh" content="1; url=Your link">
</head>
<body>
<p align="center">You are being taken to the correct page.
<br>
If the page does not load after 5 seconds,
<a href="Your Links">click here<IMG SRC="Your image link" width="1" height="1"  border="0"></a>.</p>
</body>
</html>

一段简单的php代码:

<?php
header(“Location: 你的连接”);
?>

第三段,网上还没有人公布呢,宝勇写给我的:

<?php
    if($_GET['target']){
        switch($_GET['target']){
            case 'Nokia':
            header("location:http://www.nokia.com");
            break;
            case 'tianbaoyong':
            header("location:http://tianbaoyong.com");
            break;
            default:
        null;
        }
    }
?>
原创文章转载请注明:转载自"中立博客"http://yesmyidea.com/
本文链接:http://yesmyidea.com/announced-three-sections-of-the-sales-link-code-hidden/
  1. 2010年8月7日20:57 | #1

    不错,及时总结。共同研究啊。

    [回复]

  2. 2010年8月9日21:55 | #2

    强悍,不知道用了以后有什么结果。。

    [回复]

  1. 本文目前尚无任何 trackbacks 和 pingbacks.