如何为Content-Disposition附件授予例外?

时间:2015-10-28 07:02:48

标签: .htaccess content-disposition

我在.htaccess中使用此代码强制下载所有文件 -

ForceType application/octet-stream
Header set Content-Disposition attachment

但是,如何为index.php授予例外以免下载。我知道可以使用FilesMatch但我需要下载除index.php之外的所有文件。我无法列出FilesMatch中的所有文件扩展名。提前谢谢!

1 个答案:

答案 0 :(得分:0)

是的,您可以在FilesMatch指令中否定:

<FilesMatch "(?!index\.php).*">
    ForceType application/octet-stream
    Header set Content-Disposition attachment
</FilesMatch>