我在.htaccess中使用此代码强制下载所有文件 -
ForceType application/octet-stream
Header set Content-Disposition attachment
但是,如何为index.php授予例外以免下载。我知道可以使用FilesMatch但我需要下载除index.php之外的所有文件。我无法列出FilesMatch中的所有文件扩展名。提前谢谢!
答案 0 :(得分:0)
是的,您可以在FilesMatch
指令中否定:
<FilesMatch "(?!index\.php).*">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>