网址跳转技术(转)
竞价排名研究员-大排 大排 2009-02-11 14:20 次阅读
不管大家的目的是什么啦,但我估计也都没什么比较好的目的。呵呵。我在u8881看到这个文章,感觉是终于找到了。虽然当中的方法我都已经会了,但还是给大家分享一下。尤其是最后的link 加密技术非常好。 当然啦,我也是有所删节的。有些东西不适合出现的,就删掉了 为什么要使用页面跳转? 使用页面跳转是为了让你的访客有更好的用户体验,提高转化率,你可以专门作一个跳转页面 http://yourdomian.com/jump.html ,当访客访问该页面时自动跳转到商家页面,这样在你的 landing page 上为产品作链接的时候将显示 http://yourdomian.com/product.html ,而不是你的 ugly aff link such as http://someaffsite.com/?id=youraffid, 访客将觉得自己仍然驻留在你的站点上。 实现网址跳转一共有3种方法: 1. meta refresh 你只需要在你的html页面的 <head> 段加入如下代码 CODE: <meta http-equiv=”refresh” content=”5; url=http://www.semsp.com” /> 其中 5 表示 5秒,即5秒后跳转到你的网站 2. frame redirect 使用框架将目标页面内嵌到你的网页中 CODE: <head> <script>window.status = ‘ ‘;</script> <meta http-equiv=”Content-Language” content=”en-us”> <title></title> <meta name=”keywords” content=”"> <meta name=”description” content=”"> <link rel=”stylesheet” type=”text/css” href=”"> </head> <frameset border=”0″ frameborder=”0″ marginleft=”0″ margintop=”0″ marginright=”0″ marginbottom=”0″ rows=”100%,*”> <frame src=”http://www.semsp.com” scrolling=”auto” frameborder=”no” border=”0″ noresize> <frame [...]
阅读原文