My WordPress Blog is under constant attack with this URL
/page/2/?pretty;board=Themes%253btopic%3Ddefault.0
I tried to defend with
# BEGIN
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} (.*)board=Themes(.*)
RewriteRule . http://www.go.away [R=301,L]
</IfModule>
# END
At my surprise it didnot work so I tried
# BEGIN
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/page/./
RewriteRule . http://www.go.away [R,L]
</IfModule>
# END
This helps but when Googlebot asked for example.com/page/2/
there will be a problem.
What to do?