我似乎找不到太多有关X-Sendfile的文档或PHP的示例代码(有一些rails代码)。

有人使用过它吗,介意给出简短的代码片段和简短的描述吗?

最佳答案

X-Sendfile是一个HTTP header ,因此您需要这样的内容:

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

如果配置正确,您的Web服务器会选择它。以下是更多详细信息:

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

关于php - 在Apache/PHP中使用X-Sendfile,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/80186/

10-11 05:16