Using X-Sendfile with Apache/PHP

X-Sendfile is an HTTP header, so you want something like this:

header("X-Sendfile: $filename");

Your web server picks it up if correctly configured. Here’s some more details:

http://www.jasny.net/articles/how-i-php-x-sendfile/

Leave a Comment