Problème apache configuration
Jour all,
j'ai un petit problème sur mon serveur apache (debian etch 32 bits)
php4, mysql 5, apache2.
ça concerne une image dynamique appeler par une page en .php chose qui fonctionnais très bien chez mon ancien hébergeur...
La librairie gd est activé et supporte tout les types d'images mais lorsque je tape :
http://mon_domaine.com/mysig.png
Cela ne fonctionne pas mais en appelant l'image par la page .php, cela fonctionne...
Le htaccess placer à la racine du site :
Code:
1 2 3 4 5 6
| Options +FollowSymlinks
RewriteEngine on
RewriteRule ^mysig.png$ /mysig.php [L]
RewriteRule ^mysig.png$ http://mon_domaine.com/mysig.php [L]
RewriteRule ^mysig\.png$ http://mon_domaine.com/mysig.php [nc] |
Cordialement