0

有什么方法可以用 PHP 或其他方式屏蔽 URL?我想使用带有 goo.gl 的自定义域,基本上我希望能够将某人发送到http://l.bearce.me/iS7tz并让他们自动重定向到http://goo.gl/iS7tz

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

4

1 回答 1

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
?>
于 2012-08-14T19:03:33.500 回答