我必须从 PHP 中隐藏一些扩展名为 .png、.php 和 .html 的文件。
.htaccess 工作正常
IndexIgnore *.png
IndexIgnore *.php
IndexIgnore *.html
但是,我想使用 PHP 隐藏文件。
我使用这个脚本:
<?php
$myfolder = realpath(dirname(__FILE__));
$handle = opendir("$myfolder");
while($name = readdir($handle))
echo "$name<br>";
}
closedir($handle);
?>
但是,我仍然可以看到这些文件。感谢所有可以提供帮助的人。