A real concern anyone involved in A/B/n or multivariate testing should be worried about is what’s going to happen to the search engine optimization (SEO) efforts while, and after the test is done.
If you don’t set up and follow up your tests correctly – and I don’t mean how you setup your testing platform, but the technicalities of how you implement the test on your web server – you can encounter two major problems:
1. Duplicate content issues in search engines. In this case, the control version can be totally excluded from the index or the ranks can decrease
2. Browser bookmarkers. In case if your variation pages change URLs and they are bookmarked by visitors with the changed URLs, once a winner is found and you removed the variations URL, visitors will reach a 404 not found page
To address these issues I do the following:
1. Add the following meta tags in ALL variations of the tested page:
<meta name=”robots” content=”noindex,nofollow,noarchive”>
This will tell search engine spider not to index the page, not to follow the links and not to archive the test page(s) in their index. However, this is not working all the time so,
2. If your tested page changes URL (i.e. testing /olympics.php against /olympics_test.php) you should put the test page(s) under a different directory (i.e. www.mysite.com/testing/) and
3. Exclude tested URLs (complete directory of specific files) in your robots.txt file
To exclude directories use:
User-agent: *
Disallow: /testing/
To exclude just the file use (not recommended):
User-agent: *
Disallow: /testing/olympics_test.php
4. If you’re testing variations using the same page URL with different parameters (i.e. /olympics.php against /olympics.php?test_ver=5) use the rel=”canonical” meta tag, to tell Google and the other search engines that the control page is the page they should index.
I add the line below in the <head> section for all variation pages (i.e. /olympics.php?test_ver=5):
<link rel=”canonical” href=”http://www.mysite.com/olympics.php” />
5. Tell you programmers and link builders not to link to your testing directory/page at all (IT should be careful about internal linking, and link builders should not link from external websites)
6. If you plan on testing minisites (more pages under the same testing directory) use “rel=”nofollow” on all internal links of the minisite. Additionally you can put all the links under Javascript so they won’t be followed by search engine bots
7. Once the test is concluded and you found a winner, do a permanent redirect (301) for all tested URLs to the winning URL. For example, in your .htaccess you can add:
RewriteRule ^(.*)mysite.com/testing/olympics_test.php$ http://www.mysite.com/olympics.php [R=301,L]
If you’ll implement all of the above you will have a better chance of not getting into duplicate content issues or ranking fluctuations, due to testing and experimentation.
However, if your pages do get indexed by search engines, you should take the necessary steps to minimize the impact on rankings, as soon as possible:
1. create a Google Webmaster account and keep an eye on your 404 page errors. Eventually ask for the test pages to be excluded from their index
2. create a custom 404.html page, then track and fix 404 errors with the help of Google Analytics. On your 404 error page, add this to your page tracking code:
pageTracker._trackPageview(“/404.html?page=” + document.location.pathname + document.location.search + “&from=” + document.referrer);
Your code should look something similar to:
<script type=”text/javascript”>
try{
var pageTracker = _gat._getTracker(“UA-xxxxxx-x“);
pageTracker._trackPageview(“/404.html?page=” + document.location.pathname + document.location.search + “&from=” +
document.referrer);}
catch(err) {}
</script>
I hope this will address your boss’ concerns on SEO and it will provide more flexibility for testing!
loading...
No related posts.













I totally agree with you, thanks for that
loading...
I was having some dup. issues so hopefully this will help some.
loading...
Hi webmaster may I use some of the information from this article (paragraph exerpt) if I provide a link back to your site? Thanks either way, and hope you have a excellent day! Cheers !
loading...
Manno, feel free to link to any of my posts. Happy caching of your Squidoo lens ;)
loading...
hi.gud work
loading...
what exactly is a canonical url????
loading...
Thanks for sharing!
For William Baril, Canonical Url is a tool who help you to avoid duplicate content in using only one url to access a product or a page
loading...
http://www.abc.com and abc.com (without www) is a sample of canonical URLs. For users, they seem to be the same site, but technically (from a server configuration level and search engine spiders), they could be 2 different websites. Actually, www is a subdomain on abc.com and could have his separate IP address.
loading...
I have a question that is kind of related. What is the most effective way to get low volume keywords? Thanks!
loading...
Abdul, I am not sure what you mean, by getting low volume kewyords. please add more details.
loading...
Hello, I don’t know if the tag “noarchive” could affect the PR too, but I have noticed a fall in PR in one of my blog… I was using a plugin who was adding the tag “noarchive” automatically to some pages… do you think it could be the same kind of issue?
Thanks – Nik
loading...
Nik, PR is based on the number of links pointing back to your website and should not be affected by the noarchive tag. In fact rankings, traffic and PR will not be affected by adding this tag in the meta data. The drop might be related to a variation in the number of links pointing to your site.
loading...
Thanks – by “variation” do you mean both increase or decrease? My blog has PR0 for teo years now… and I cannot find the way to solve that (that’s why I was supposing it was a bugged plugin adding the noarchive)…
loading...
I recommend Yahoo Small Business Web Hosting. Management of one’s internet website at Yahoo! is a breeze due to their web hosting handle panel. Everything from setting up email accounts, acquiring monthly internet website statistics, to internet website development and maintenance can be simply controlled utilizing one standardized interface.
loading...
Nice seo tricks how I see ,…. really ,.. I would like if is possible to get other help from you ,… can you addme yahoo talk ,.. h3x0r tnx ,..
loading...
variation, in the context a designing experiments (website testing) refers to a page where the content is different than the control page – the original page.
loading...
I concur with most of your article, but just keep in mind that search engine optimization tactics and methods are evolving in real time to keep up with modifications carried out by search engines corresponding to Google. Whether or not you are attempting to get a higher ranking for your Blog or just making an attempt to drive extra traffic with article marketing the basics at all times remain the same.
loading...
I like to use free webmaster tools, they help me to know where I am standing at on bing.
loading...
Thank you! I truly believe that a couple of my friends will appreciate this post.. now where is that email to your friends button again?
loading...