Bonjour,

Config : Apache httpd2.2.11

J'essaie de configurer un alias comme suit :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
DocumentRoot "/dvt/app/webapps/"
<Directory "/">
    Options None
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>
 
.....
<IfModule alias_module>
    Alias /image /data/app/obj/cache
    <Directory /data/app/obj/cache>
      Order allow,deny
      Allow from all
    </Directory>
</IfModule>
Lorsque j'essaie d'atteindre l'url http://www.xxx.com/image/test.gif (ou http://www.xxx.com/app/image/test.gif), j'ai l'erreur suivante :
Citation Envoyé par access_log
- - [27/Apr/2009:18:38:58 +0200] "GET /image/test.gif HTTP/1.1" 400 -
Help !

Merci