提问人:Kirill Popov 提问时间:6/27/2023 最后编辑:Kirill Popov 更新时间:7/11/2023 访问量:34
如何仅阻止folder1目录中的文件?
How to block files only in folder1 directory?
问:
结构:
./project/
├── folder1/
├── folder2/
├── test.php
├── abc_123.xml
├── test.php
├── abc_123.xml
├── .htaccess
/.htaccess:
<FilesMatch "^\/folder1\/[a-z0-9_]+\.(php|log|xml)$">
Order Allow,Deny
Deny from all
</FilesMatch>
我的代码不起作用。不阻挡任何东西
UPD1: 如果我使用此代码,则所有嵌套目录中的文件也会被阻止。但我只需要在“/folder1/”中阻止。
<FilesMatch "^[a-z0-9_]+\.(php|log|xml)$">
Order Allow,Deny
Deny from all
</FilesMatch>
答: 暂无答案
评论
FilesMatch