我有一個redirect.php和一個鏈接,它不起作用在WORDPRESS。mod_rewrite外部鏈接問題(wordpress)
我希望當我點擊我的網站「你好」的鏈接,它進入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>