this does not work - I want to limit one folder and one file with one directive to avaoid that I have to add the allowed IP adresses two times.
<Directory .../homes/*/wp-login>
<Files .../homes/*/wp-login.php>
Order deny,allow
deny from all
allow from ...
allow from ...
allow from ...
.
.
.
</Files>
</Directory>
With one directive for the file and another one for the folder it works but then the .htaccess file woul get double size. :-(