我是PHP新手,一步一步學習它。那麼我有一個下載頁面,我想在下載完成後重定向。下載後重定向頭
header('Content-type: application/octet-stream');
header('Content-Disposition: attachment; filename="dlink.pdf"');
header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); readfile('dlink.pdf');
header("refresh: 2; auto_works.html");
exit;
這是我的PHP代碼中的下載代碼。我怎樣才能達到我的指示?請幫忙。你能不能也跟我提我應該在哪裏寫的代碼行
感謝
我不'真的覺得這是可能的。 – Yoshi 2011-05-11 10:35:16
'refresh:2; page.html'是一個HTML''tag value =)它不是一個HTTP頭。 – Rudie 2011-05-11 10:35:45
@Rudie不知道......你能幫我解決這個問題嗎? – Vinoth 2011-05-11 10:38:43