我尝试向我的网站发送流量,然后将其重定向到广告系列网址中指定的域。我到目前为止所尝试的是这个目录上的php"重定向"在我的网站内:
我想将流量发送到此网址,其中重定向将其带到示例域:
http://www.example.com/redirect?link=" http://www.sampledomain.com"
<?php
// accepts a url as a query argument, checks to be sure request came from
site
//
if (!isset($_SERVER['HTTP_REFERER']) ) die('not authorized');
$host = $_SERVER['HTTP_HOST'];
$referer = explode('/', $_SERVER['HTTP_REFERER']);
if ($referer[2] != $host) die('not authorized (2)');
$transfer = filter_input( INPUT_GET, 'link', FILTER_SANITIZE_URL );
header('location: ' . $transfer);
exit();
?>
使用此方法,我不断收到403错误。请帮助提出任何建议。
谢谢!