有人可以告诉我以下是否可行:
由于
我认为我没有提供足够的信息。
因此,目前搜索会将表格中的链接作为列之一。用户可以单击其中一个链接,然后在下一页上,他们可以单击另一个链接以获取他们需要的信息。
我希望在后台提取该信息,并用第二个链接替换第一个链接。重定向不是一种选择(我认为)
答案 0 :(得分:0)
<?php
//do redirection in your php file using the header fn and don't show any output before this call
header('Location: http://redirecturl.com/');
exit;
?>
有关详细信息,请访问php header fn
答案 1 :(得分:0)
看一下标题函数(http://php.net/manual/ru/function.header.php):
header("Location: http://www.example.com/");