Question

There are some bots that just keep hitting my site over and over again.

http://proxy.parser.by/proxy.php (Referrer)

I don't want to even reply to anyone that is requesting a .php, or .htm, or .html file.

What is the best way of not responding to such requests?

Update: (I don't want to incur the cost of responding)

Was it helpful?

Solution

This is probably best done at the server level, before the request even gets to Django. For example, in Apache, you can use mod_rewrite for access control. This rule rejects all requests with paths ending with .php, .htm, or .html:

RewriteRule \.(php|html?)$ - [F]

The Apache documentation explains how to block requests by user agent, by referer, by orginating IP address, and so on.

OTHER TIPS

Drop in some middleware which will detect any request you don't want to handle and have it return an HTTP 403 (Forbidden).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top