阻止访问.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.
# Prevent viewing of a specific file <files file.jpg> Order allow,deny Deny from all </files> # Prevent access to multiple file types Order Allow,Deny Deny from all </FilesMatch>
以上是关于阻止访问.htaccess中的特定文件的主要内容,如果未能解决你的问题,请参考以下文章
如何阻止对根文件夹中除 index.php 之外的所有 .php 的访问(通过 .htaccess)?