On 10/17/05, Rasconi Luca (u.e.) <Luca.Rasconi@xxxxxxxxxxxxx> wrote: > RewriteRule ^/pages/generic_error/(.*)\.html$ > http://static.rossoalice.virgilio.it/pages/generic_error/mce/$1.html > [R=temp,L] > > But it doesn't works!!!!!!!!!!!!!! And the error is something like this: > > redirection number limiti reached. It's not possible load the page. > (from italian, im sorry :( ) Yes, that is certainly a redirect loop because the new URL still matches the regex. Try: RewriteRule ^/pages/generic_error/([^/]+)\.html$ http://static.rossoalice.virgilio.it/pages/generic_error/mce/$1.html [R=temp,L] which will not catch requests to subdirectories of generic_error. Joshua. --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx