You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Mohit Anchlia <mo...@gmail.com> on 2008/06/04 19:59:43 UTC

Re: [users@httpd] Re: ezmlm response

so in my case should it be:

RewriteCond %{REQUEST_METHOD} ^GET [AND]
RewriteCond %{QUERY_STRING} ^$
RewriteRule .* - [F]


On 5/27/08, Eric Covener <co...@gmail.com> wrote:
>
> On Tue, May 27, 2008 at 2:00 AM, Mohit Anchlia <mo...@gmail.com>
> wrote:
> > Hi,
> >
> > We are running Apache web server 1.3. I have a request to block requests
> > that are of type "GET" with no query string before it's passed to our web
> > server. I understand that in Apache 2.0 there is a concept of filters.
> Could
> > somebody help me with various options I have on my hand to block such
> > request with "GET" and no query string.
> >
>
> Filter not necessary:
>
> RewriteCond %{QUERY_STRING} ^$
> RewriteRule .* - [F]
>
>
>
> --
> Eric Covener
> covener@gmail.com
>
> ---------------------------------------------------------------------
> 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@httpd.apache.org
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>