下午!我正在尝试检查从 post 变量接收到的 URL 是否存在,以及它是否确实将用户发送到那里。如果不重定向到其他地方......我写了这个但由于某种原因不起作用,
有任何想法吗?干杯
<?php>
$file = $_POST["code"];
$file_headers =
@get_headers('http://example.co.uk/' $file);
if($file_headers[0] == 'HTTP/1.1 404 Not Found') {
/* does not exist
header('Location: http://example.co.uk/?exists=false');
echo $file 'not found';
}
else {
/* exists
header('Location: http://example.co.uk/' $file);
echo $file 'found';
};
?>