我正在wordpress网站上创建一个下载页面。
我想传递一个像http://www.mypersonaldomain.com/download?url=http://link.to/the.pdf
我希望等待3秒左右,感谢他们下载。
我尝试过一些php和meta标签,但在wordpress中似乎都没有。
<meta http-equiv="refresh" content="3; URL=<%out.print(request.getParameter("url"))%>">
并使用php插件
[insert_php]
$url= $_GET['url'];
header("refresh:3;url=$url" );
[/insert_php]
答案 0 :(得分:0)
//Condition Start $url = 'http://www.mypersonaldomain.com/download?url=http//link.to/the.pdf'wp_redirect( $url);exit;/ Condition End