使用PHP屏蔽URL

时间:2012-08-14 19:01:07

标签: php url masking url-masking

有没有办法用PHP或其他东西屏蔽URL?我想通过goo.gl使用自定义域名,基本上我希望能够将某人发送到http://l.bearce.me/iS7tz并让他们自动重新加入http://goo.gl/iS7tz

我发誓我以前见过这样的东西,但我不记得它的名字了。

1 个答案:

答案 0 :(得分:2)

你是说这个意思吗? (URL隐藏,带有onclick事件的纯HTML)

<a href="http://google.com" onclick="window.location='http://yahoo.com';return false;">Google</a>

还是这个? (HTTP重定向)

<?php
// get $path form the url (I suppose you're using mod_rewrite or similar)
$path =  $_GET['some_url_var'];

header("location: http://goo.gl/$path"); // redirect
?>