我在.htaccess中使用了这段代码来强制下载所有文件——
ForceType application/octet-stream
Header set Content-Disposition attachment
然而,我如何才能为index.php授予一个不下载的异常。我知道可以使用FilesMatch,但我需要下载除index.php之外的所有文件。我无法列出FilesMatch中的所有文件扩展名。提前感谢!
是的,可以在FilesMatch
指令中取反:
<FilesMatch "(?!index.php).*">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>