I am trying to put a simple .htaccess with "deny from all" in phpmyadmin directory (from the default xampp installation), but it does not make any difference... The directory is still available through the web. The .htacess file is the right one and the rights are fine, because if I add DirectoryIndex to the same file, it is processed correctly.
AllowOverride is set:
<Directory "/opt/lampp/phpmyadmin">
#AllowOverride AuthConfig Limit
AllowOverride All
Order allow,deny
Allow from all
</Directory>
So why doesn't it load? UPDATE: changed from deny,allow to allow,deny, still same result...