0
我正在使用PHP腳本來改變我的下載鏈接到「http://mydomain.com/get.php?download/」但是我期待進一步改變這隻顯示「/get.php?download/或。更具體的東西就像我的網頁上?「PHP」裏的按鈕保存鏈接我正在尋找重寫一個特定的URl與PHP
這裏是我的代碼:
<?php
$path = 'folder/blank.file/';
$mm_type="application/octet-stream";
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Type: " . $mm_type);
header("Content-Length: " .(string)(filesize($path)));
header('Content-Disposition: attachment; filename="'.basename($path).'"');
header("Content-Transfer-Encoding: binary\n");
readfile($path); //output
exit();
?>
這怎麼可能感謝您的幫助
編輯?! :使用lighttpd和invision電源板。
此鏈接將有所幫助:http://httpd.apache.org/docs/2.4/mod/mod_rewrite.html – Passerby 2013-05-13 03:12:15
我迷失了這一點。 – 2013-05-13 03:22:20
我正在使用lighttpd和IPB。 – user2376223 2013-05-13 03:22:47