有没有办法用PHP或其他东西屏蔽URL?我想通过goo.gl使用自定义域名,基本上我希望能够将某人发送到http://l.bearce.me/iS7tz并让他们自动重新加入http://goo.gl/iS7tz。
我发誓我以前见过这样的东西,但我不记得它的名字了。
答案 0 :(得分:2)
<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
?>