的.htaccess拒绝访问特定文件?不止一个文件、htaccess

2023-09-02 09:36:37 作者:你不懂爱却懂伤害

我可以禁止访问与的.htaccess文件,但我不知道如何禁止多个文件来看待(直接,不是从包括)

I am able to disable access to a file with .htaccess, but I don't know how to disallow multiple files to be viewed (directly, not from includes)

他们的.php,所以我不能禁止的文件类型(如仅在线教程说..)

They are .php so I can't disable a file type (like the only tutorials online say..)

<FILES ... ? 

</FILES>

或东西..例如home.php,为file.php,test.php的我怎么禁止访问所有三个文件包含该标签的?或类似的,帮助请!

Or something.. For example "home.php, file.php , test.php" how do I disallow access to all three files with that tag? or similar, help please!

推荐答案

如果您想根据定期EX pressions排除的文件,你可以使用FilesMatch而不是文件,如:

If you want to exclude files based on regular expressions, you could use FilesMatch instead of Files, e.g.:

<FilesMatch ^((home|test|file).php$|mysecretfolder|asecretpicture.jpe?g)$>
...
</FilesMatch>
 
精彩推荐
图片推荐