问题描述
我想将服务器上的某些文件列入白名单,但不禁用目录列表。
当我将它们添加到self.collectionView.reloadData()
if let selectionIndexPath = self.selectionIndexPath {
self.collectionView.selectItems(at: [selectionIndexPath],scrollPosition: .centeredVertically)
self.view.window?.makeFirstResponder(self.collectionView)
}
时,它会禁用目录列表。
我当前的代码:
FilesMatch
要仅允许访问dem和dem.bz2文件,应拒绝其他任何内容。目前我的.htaccess可以使用,但是目录列表已禁用
文件名:/etc/apache2/sites-available/000-default.conf
allow from all
Options +Indexes
<FilesMatch ".(dem|dem.bz2)$">
allow from all
</FilesMatch>
<FilesMatch ".(?<!dem|dem.bz2)$">
deny from all
</FilesMatch>
解决方法
您可以通过一个简单的arr2
规则来做到这一点:
mod_rewrite