Thank you very much. Now all is ok!!!!!

Luca

-----Original Message-----
From: Joshua Slive [mailto:[EMAIL PROTECTED] 
Sent: lunedì 17 ottobre 2005 15.57
To: users@httpd.apache.org
Subject: Re: [EMAIL PROTECTED] Permission to access on my website!

On 10/17/05, Rasconi Luca (u.e.) <[EMAIL PROTECTED]> 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: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
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: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to