隐藏推荐地址的方法

      有的时候推荐地址很长,或者不好意思把推荐地址显示出来,我们可以用下面方法来隐藏推荐地址。
      1、采用tinyurl的服务
      这个很简单,只要到tinyurl的主页,输入源地址和目标地址就OK。
      2、采用html跳转
      新建一个页面,然后在页面中增加一行:
<meta http-equiv="refresh" content="0; url=https://www.ezloo.com">
      3、PHP跳转
      PHP跳转和HTML跳转差不多,增加一行:
<?php header("Location: https://www.ezloo.com"); ?>
      4、JavaScript跳转
      第一个url是显示的url,第二个url才是真正的要链接的url地址。
<a href="http://www.yelingyang.com" onclick="parent.location.href='https://www.ezloo.com'; return event.returnValue=false">Testing</a>
      5、.htaccess跳转
      编辑.htaccess文件
RewriteEngine on
RewriteRule ^/url/bluehost.html$ https://www.ezloo.com [R]

1 Comment