I'm receiving from the client a request for a ".png" file. The request is by sending the full address (I cant change that).
meaning:
/var/www/imges/<file name>
The problem from what I understand is that the apache server understands this:
/var/www/imges/var/www/imges/<file name>
Because his root is at "/var/www/"/ So he can't find it.
I try to add the the ".conf" file an Alias Directive:
Alias /var/www/imges /images
<Directory /image>
Order allow,deny
Allow from all
</Directory>
But it doesn’t seem to do anything...
I will appreciate any advice.
<LocationMatch >or aRewriteRule. With those you can achieve it easily. – STATUS_ACCESS_DENIED Mar 29 '11 at 0:22