utrenkner Posted June 16, 2022 Report Share Posted June 16, 2022 We sometimes see certain bots crawling our website, thereby also sending HEAD requests on banner links (HEAD requests are like a normal HTTP GET request, but request only the HTTP header and not the actual body). Revive counts the HEAD requests like normal clicks on the buttons leading to very high click number, CTR on those days. Is there an option in Revive to disable counting HEAD requests? If not: Does anyone see a legitimate reason to allow HEAD requests at all on Revive banners? Otherwise we could block them already on the web server. Quote Link to comment Share on other sites More sharing options...
sttila Posted July 24, 2022 Report Share Posted July 24, 2022 Any news on this topic? I'm facing the same issue. @utrenker: Did you find a solution? Quote Link to comment Share on other sites More sharing options...
DavidT Posted January 15 Report Share Posted January 15 I prevented HEAD requests getting to Revive by adding a rule in Nginx: # Avoid HEAD requests triggering click hits if ($request_method = HEAD) { return 405; } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.