utrenkner Posted June 16, 2022 Report 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
sttila Posted July 24, 2022 Report Posted July 24, 2022 Any news on this topic? I'm facing the same issue. @utrenker: Did you find a solution? Quote
DavidT Posted January 15, 2024 Report Posted January 15, 2024 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
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.