Eric,

That was it, I need that RewriteCond.
Thank you so much for your help.

Y 



----- Original Message -----
From: "Eric Covener" <[EMAIL PROTECTED]>
To: users@httpd.apache.org
Sent: Wednesday, September 17, 2008 3:40:15 PM (GMT-0500) America/New_York
Subject: Re: [EMAIL PROTECTED] Rewrite Rule help

On Wed, Sep 17, 2008 at 2:49 PM, Yoom Nguyen <[EMAIL PROTECTED]> wrote:

>
> DocumentRoot /srv/www/maintenance/
>
> RewriteEngine on
> RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
> RewriteRule .* -[F]
>
> RewriteRule ^/(.*)$  maintenance.html [R=302,NC,L]


Add a / before maintenance.html, and Protect the rule by preceding it
with RewriteCond %{REQUEST_URI} !=/maintenance.html

(you can do the latter via your regex, but it's usually simpler to
guard it the other way)


-- 
Eric Covener
[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]



---------------------------------------------------------------------
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