Author: A.Degives Mas (14 May 11 11:05pm)
Use the "Easy Noindex And Nofollow" plugin, it's in the canonical WP plugin repository at wordpress.org/extend/plugins - however, using that you only allow or deny access to posts or pages, i.e. your dynamic URIs are not affected.
What I personally do is to use a combination of things; probably the easiest for you is to use robots.txt and in that file flat out deny access to anything that is not a canonical URI.
To get you started, here's what I might have in a robots.txt file:
---------------------------------
User-agent: *
Allow: /
Disallow: *?
Disallow: *&
Disallow: *%
Disallow: /cgi-bin
Disallow: /wp-admin
Disallow: /wp-content
Disallow: /wp-includes
Sitemap: http://www.example.com/sitemap.xml
---------------------------------
Note that reference to the sitemap file in the last line, which may be another tool in your belt. Else, don't include it.
|