Report this

What is the reason for this report?

How ban some http-query in Apache?

Posted on November 21, 2014

Hello. I have a problem - some application sends too many queries to my API (works by http). I have forbidden it in php and in .htaccess:

RewriteRule ^.*$ - [F,L])```
But it doesn't help. So my apache2/access.log has very-very big size and it leads to the lack of free space on server.
Can I ban this query in Apache and how can I do it?

UPDATE.
Queries are sent from the different ip-addresses and rarely (from one ip), so banning them by IP or by time limit won't help...


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

You’ll need to set RewriteEngine on before it will work. I would write it like this:

        RewriteEngine on
        RewriteCond %{QUERY_STRING} ^(.*)23e8a4dccbcfae76f73292fd5cc13f84(.*)$
        RewriteRule .* - [F]

Thank you, but I needed block this URL in iptables. If somebody has the same problem, read this article http://spamcleaner.org/en/misc/w00tw00t.html

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.