我已经开始使用 Lighttpd,并且我有这个.htaccess
文件可以更改响应标头。
<IfModule mod_headers.c>
Header unset Content-Type
Header unset Content-Disposition
Header set Content-Disposition attachment
Header set Content-Type application/octet-stream
Header add Content-Type application/force-download
Header add Content-Type application/download
Header unset Content-Transfer-Encoding
Header set Content-Transfer-Encoding binary
</IfModule>
我怎样才能把它翻译成在 Lighttpd 中工作?