【发布时间】:2012-11-11 00:22:30
【问题描述】:
我有一个 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>
【问题讨论】:
标签: mod-rewrite redirect url-rewriting external