Hi again,
I solved the problem,
If you want to reject PHP requests, for example, in a specific directory, you can use:
<Directory "D:/Programs/htdocs/test/">
<Files "*.php">
Deny from all
</Files>
</Directory>
Ofcourse, you can reject everything by denying the files: "*.*" then you...