我有一个redirect.php 和一个链接,它在WORDPRESS 中不起作用。
我希望当我单击我网站上的“hello”链接时,它会转到 redirect.php,用户会看到微调器 5 秒,然后用户将我的网站退出到 hello.com
看起来 mod_rewrite 有问题我无法解决
我真的很感激一个非常详细的答案。我很初级
这就是我所拥有的。
1.- 我的主页上有一个外部链接:
<a href="http://redirect.php?link=hello.com">Hello</a>
2.- 在redirect.php 中,我有:
<html>
<head>
...
<meta http-equiv="refresh" content="5;url=<?php echo $_GET['link'];?>" />
...
</head>
<body>
<h1>You are leaving my site!</h1>
<img src="/images/spinner.gif" alt="spinner" />
</body>
</html>