如何在链接到内部页面时将用户重定向到外部站点?
我见过这样的例子:
- example.com/go/ksdjfksjdhfls
- example.com/?go=http://www.new-example.com
- ... 还有很多...
这是如何在 php 中实现的?
这对 SEO 有任何优点/缺点吗?
我认为这种方法没有任何好处,但有几种方法可以实现它。要使用GET
查询执行此操作,您只需要以下代码:
<a href="http://example.com/link.php?site=http://www.google.com">Google!</a>
if (filter_var($_GET['site'], FILTER_VALIDATE_URL)) {
header('Location: ' . $_GET['site']);
}
对于上面的示例,它实际上会将用户带到该位置,而不是:
http://example.com/link.php?site=http://www.google.com
要在拉起远程站点时使 url 成为“本地”,您要么必须:
所以在我能想到的三种服务器端方法中,一种可能可行,也可能不可行,而且很痛苦。一个会瘫痪并给服务器带来沉重的负担。最后一个是已知的坏人,在很多情况下可能不起作用。
所以我只需要重定向,实际上,如果您不需要地址栏来显示本地 URL,那么我只需要一个直接链接。
所有这些都提出了一个问题:您希望完成什么?
把它放在任何输出到浏览器之前
<?
header('location:example.com\index.php');
?>
设置一个 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');
?>
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>
我为此使用 .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>