.htaccess = dossiers invisibles ?
Salut à tous,
Je découvre actuellement la protection des dossiers avec .htaccess...
En fait L'autentification fonctionne uniquement si je fais la modification suivante dans apache2.conf :
Code:
1 2 3 4 5 6 7 8 9
| <Directory /home/*/public_html>
AllowOverride FileInfo AuthConfig Limit
Options Indexes SymLinksIfOwnerMatch IncludesNoExec
</Directory>
par
<Directory /var/www/*>
AllowOverride FileInfo AuthConfig Limit
Options Indexes SymLinksIfOwnerMatch IncludesNoExec
</Directory> |
Or ainsi, en browsant, mes dossiers (ayant un .htaccess) sont invisibles (c'est normal?). je n'y ai acces (via authentification USER/PASSWORD) qu'en écrivant dans la barre d'adresse le parcours complet du dossier...
Puis-je solution ce problème d'invisibilité en maintenant l'authentification?
Merci d'avance!!! :)