Hypothetically if I wanted to remove everything from the normal SERPs but keep images in those results, what would be the best method? As I understand it the following applies:
Robots META Tags - Googlebot
1. <meta name="googlebot" content="noindex">
Do Not index / Do follow links
2. <meta name="googlebot" content="nofollow">
Do index / Do Not follow links
3. <meta name="googlebot" content="noindex, nofollow">
Do Not index / Do Not follow links
4. <meta name="googlebot" content="noarchive">
Do Not cache
5. <meta name="googlebot" content="nosnippet">
Do Not display snippet / Do Not cache
6. <meta name="googlebot" content="noodp">
Do Not show ODP description
Do I also assume that if I wanted to block Google completely it would be:
<meta name="googlebot" content="noindex, nofollow, noarchive">
Apologies if this may seem dumb however I've never had to do this before.