Bonjour à tous...
Je suis sous linux (red hat 8.0), et j'ai installé Apache version 2.0.40
J'ai installé une application qui utilise PerL et Mysql, et, ho surprise, depuis que j'ai créé un virtual host, mon DirectoryIdex ne fonctionne plus.
Pourtant j'ai bien mis le DirectoryIndex dans la conf de base de Apache et dans mon virtual host en renseignant la page index.html
Voici mon virtual Host :
NameVirtualHost 127.0.0.1:80
<VirtualHost 127.0.0.1>
ServerName rt.com
DocumentRoot /www/rt/share/html/
AddDefaultCharset UTF-8
Options Includes FollowSymLinks
DirectoryIndex index.html
#Si Apache est en version 2 avec le mod perl 2
PerlModule Apache2 Apache::compat
PerlModule Apache::DBI
PerlRequire /www/rt/bin/webmux.pl
<location />
SetHandler perl-script
PerlHandler RT::Mason
</location>
</VirtualHost>
Et voici l'erreur lorsque je lance une URL repertoire (http://localhost/ par exemple) :
Forbidden
You don't have permission to access / on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Help me please !!!