How to Block Google’s Web Accelerator

Create an .htaccess file with the following lines

RewriteEngine on
Options +FollowSymlinks
RewriteBase /
RewriteCond %{REMOTE_ADDR} ^72.14.192.
RewriteCond %{REQUEST_URI} !^/google.html$
RewriteRule ^.*$ /google.html

I’ve implemented above. So no webaccelerator from Google will enter AroundMyRoom .. (if above is working correctly)

Thanks to the Fantomaster