>> RewriteEngine On >> RewriteCond %{DOCUMENT_ROOT}/mysite/pictures%{REQUEST_URI} -f >> RewriteRule ^(.+) /mysite/pictures/$1 [L] > > Unfortunately it doesn't work, because %{REQUEST_URI}contains also > /mysite... > Indeed if I request /mysite/icon.png, the input of RewriteCond is > '/home/yvand/www/mysite/pictures/mysite/icon.png' > > My question is how can I access to the URI in RewriteCond? > When I say URI I do not mean REQUEST_URI but just icon.png in my example, > which is the value used by RewriteRule. Since you captured it, it's $1 in the RewriteCond. I think that's the only way to get at the suffix of the path you're implicitly comparing against when you do rewrite in htaccess. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx