I've successfully stopped "GET / HTTP/1.0" requests:
RewriteCond %{THE_REQUEST} HTTP/1\.0
RewriteRule ^(.*)$ - [F]
(No genuine user was using HTTP/1.0)
And now I'm trying to stop my logs getting full up with empty "GET / HTTP/1.1" requests
AS I understand it, such requests are requesting the base url file (eg index.html)So I've tried redirecting such requests:
RewriteRule ^/?$ /index\.php [L]
But it's not working. My logs are still getting lots of "GET / HTTP/1.1" requests.
Any ideas? Most if not all of these requests are not from genuine users.
Thanks, Ali.