1

如何在链接到内部页面时将用户重定向到外部站点?

我见过这样的例子:

  • example.com/go/ksdjfksjdhfls
  • example.com/?go=http://www.new-example.com
  • ... 还有很多...

这是如何在 php 中实现的?

这对 SEO 有任何优点/缺点吗?

4

5 回答 5

5

我认为这种方法没有任何好处,但有几种方法可以实现它。要使用GET查询执行此操作,您只需要以下代码:

HTML:

  <a href="http://example.com/link.php?site=http://www.google.com">Google!</a>

PHP:

if (filter_var($_GET['site'], FILTER_VALIDATE_URL)) {
          header('Location: ' . $_GET['site']);
}

对于上面的示例,它实际上会将用户带到该位置,而不是:

 http://example.com/link.php?site=http://www.google.com

要在拉起远程站点时使 url 成为“本地”,您要么必须:

  • 与 URL 重写混淆,这可能会变得混乱,我不确定是否会让您执行上述操作
  • 通过 curl 检索远程页面并显示它,这可能会破坏“远程”页面上的链接
  • 使用 iframe 并将 iframe 设置为页面大小。请注意,这最后一种方法虽然攻击性最小,但被认为是一种潜在的安全漏洞,称为“点击劫持”,因为它用于诱骗用户单击一个页面的链接,而该页面隐藏了指向另一个站点的恶意链接。许多服务器和浏览器正在采取措施避免这种情况(例如,谷歌不允许对其主页进行 iframe),因此这也可能会走到死胡同。

所以在我能想到的三种服务器端方法中,一种可能可行,也可能不可行,而且很痛苦。一个会瘫痪并给服务器带来沉重的负担。最后一个是已知的坏人,在很多情况下可能不起作用。

所以我只需要重定向,实际上,如果您不需要地址栏来显示本地 URL,那么我只需要一个直接链接。

所有这些都提出了一个问题:您希望完成什么?

于 2012-06-10T06:16:20.763 回答
1

把它放在任何输出到浏览器之前

<?
header('location:example.com\index.php');
?>
于 2012-06-10T06:15:56.577 回答
1

设置一个 index php 文件,它将标头位置设置为 get 参数中的 url。

example.com/?go=http://www.new-example.com :

// example.com/index.php
<?php
if (isset($_GET['go'])) {
    $go = $_GET['go'];
    header('Location: $go');
} // else if other commands
// else (no command) load regular page
?>

example.com/go/ksdjfksjdhfls :

// example.com/go/ksdjfksjdhfls/index.php
<?php
header('Location: http://someurl.com');
?>
于 2012-06-10T06:18:40.937 回答
0

example.com/?go=http://www.new-example.com

您可以使用 iframe 并将 src 属性设置为http://www.new-example.com

<!DOCTYPE HTML>
<html>
<head>

</head>

<body>
   <iframe src="http://www.new-example.com" width="100%" height="100%"></iframe>


</body>
</html>
于 2012-06-10T06:10:19.653 回答
0

我为此使用 .htaccess 规则。不需要 PHP。

IE

Redirect 307 /go/somewhere-else http://www.my-affiliate-link.com/

所以访问http://www.mywebsite.com/go/somewhere-else将重定向到http://www.my-affiliate-link.com/.

在我的网站上,我使用“nofollow”来告诉搜索引擎不要跟随链接。状态码的307意思是“临时重定向”。

<a href="http://www.mywebsite.com/go/somewhere-else" rel="nofollow">Click here!</a>

于 2012-06-22T00:17:21.543 回答