Hi all,

I want to redirect all requests like /icon.png to /pictures/icon.png, if the file exists in the pictures folder.
It seems really trivial but I didn't manage to set up.

Here is my .htaccess :
    RewriteEngine On
    RewriteCond /pictures/%{REQUEST_FILENAME} -f
    RewriteRule ^(.+) /pictures/$1 [L]

If I request /pictures/icon.png it works, but if I request /icon.png I get a 404 error.

What is wrong with my .htaccess?

Regards.

PS : Sorry for my bad english

--yvand

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to