我試圖隱藏我的產品文件的位置,所以我在購買後用PHP header啓動下載服務器端。有沒有可能發現文件的網址?使用php開始下載,是否可以查看下載鏈接?
使用下面的代碼
if (file_exists($_SERVER['DOCUMENT_ROOT']."/files/$file")) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
更新與實際代碼的問題。你認爲這個鏈接可以用我的代碼發現嗎?如果是的話,我應該改變什麼? – Xperplay