lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
298 B
13 lines
298 B
<?php |
|
|
|
function pathencode($path) { |
|
return str_replace(',', '%2c', urlencode($path)); |
|
} |
|
|
|
$val = "X-Sendfile2: " . pathencode(getcwd() . "/index.txt") . " " . $_GET["range"]; |
|
|
|
if (isset($_GET["range2"])) $val .= ", " . pathencode(getcwd() . "/index.txt") . " " . $_GET["range2"]; |
|
|
|
header($val); |
|
|
|
?>
|