Apache - 仅将 htaccess 指令应用于一个页面?

Apache - 仅将 htaccess 指令应用于一个页面?

如何将 Apache 拒绝指令应用于目录中的某个特定页面?

答案1

如果您的页面位于特定文件中,则可以使用<Files>...</Files>指令

<Files secret.php >
order allow,deny
deny from all
</Files>

将拒绝访问 secret.php 页面

相关内容