I was fed up with a lot of hits "from" "127.0.0.1" in the access logs so I added that IP (RewriteCond %{REMOTE_ADDR} ^127\.0\.0\.1$ [OR]) to the list of blocked IP ranges in my .htaccess. Virtually all of the faked requests were for page files and with a large variety of user agents and no referrer.
What could be the purpose of requesting files with an obviously faked IP that cannot get anything back from me although the requests are served a 200 response?
Is there a risk of my site or the server running into some problems if I block localhost in that manner?