阻止访问.htaccess中的特定文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阻止访问.htaccess中的特定文件相关的知识,希望对你有一定的参考价值。

This example shows you how to restrict to a specific file or multiple files. Add the following code block and edit the file name/s according to yuor needs.
  1. # Prevent viewing of a specific file
  2. <files file.jpg>
  3. Order allow,deny
  4. Deny from all
  5. </files>
  6.  
  7. # Prevent access to multiple file types
  8. <FilesMatch ".(htaccess|htpasswd|ini|phps|fla|psd)$">
  9. Order Allow,Deny
  10. Deny from all
  11. </FilesMatch>

以上是关于阻止访问.htaccess中的特定文件的主要内容,如果未能解决你的问题,请参考以下文章

如何阻止对根文件夹中除 index.php 之外的所有 .php 的访问(通过 .htaccess)?

拒绝访问 .htaccess 中的一个特定文件夹

Apache中.htaccess文件的作用和配置

使用 htaccess 和 GeoIP 阻止特殊地址或 URL 的国家/地区

apache .htaccess 分布式配置文件 解读

.htaccess 拒绝目录访问