我需要根据过去的任何内容进行动态重定向?在网址中。
举个例子。如果我发送如下链接:
http://go.com?http://link1.com
go.com 加载一个页面,该页面有 15 秒的加载页面。这个页面上会有一些 html。如果此人什么都不做,它只会在 15 秒后重定向到 link1.com。
我在问号后添加的任何网址都应该执行此操作
http://go.com?http://link2.com http://go.com?http://link5.com 等
这是我找到的代码,但它不起作用。
<?php
$delay = "15"; # how many seconds expire before automatic redirect
$site = $_GET['url']; ?>
<html>
<head>
<meta http-equiv="refresh" content="<?php echo $delay; ?>;url=http://<?php echo $site; ?>">
</head>
<body>
redirecting you to <?php echo $site; ?> in <?php echo $delay; ?> seconds ...</p>
</body>
</html>
任何帮助都会很棒。