kouider:
1.- Al manual del apache se llega asi
http://localhost/manual/index.html
2.- dentro del http.conf hay algo asi:
AliasMatch ^/manual(?:/(?:de|en|es|fr|ja|ko|ru))?(/.*)?$ "C:/Apache/Apache2/manual$1"
<Directory "C:/Apache/Apache2/manual">
Options Indexes
AllowOverride None
Order allow,deny
Allow from all
<Files *.html>
SetHandler type-map
</Files>
SetEnvIf Request_URI ^/manual/(de|en|es|fr|ja|ko|ru)/ prefer-language=$1
RedirectMatch 301 ^/manual(?:/(de|en|es|fr|ja|ko|ru)){2,}(/.*)?$ /manual/$1$2
</Directory>
Y para manejar cgi o pl, ademas de tener perl, debes cuidar de esto:
ScriptAlias /cgi-bin/ "C:/Apache/Apache2/cgi-bin/"
<Directory "C:/Apache/Apache2/cgi-bin">
AllowOverride All
Options All
Order allow,deny
Allow from all
</Directory>
Saludos
Y espero te ayude.
Franco