For the past 4 or 5 years we have been running a static (strictly html) web site with no funky symbols in the URL strings. We have enjoyed decent SERPS and rankings during this time. We have finally developed the e-commerce shopping cart of our dreams.
We are going to link the new custom built shopping cart to our current web site, leaving all of its current content, but just adding links to checkout and add to the cart. I am a little worried about implementing this because the URL string when you add something or checkout in the shopping cart contains "action=add&id123=".
I dont care if the SE's crawl the shopping cart, in fact I wouldnt even want them to. The problem is that I cant change the robots.txt page because there will be too many pages to list. Also the shopping cart resides on a different domain name. For example, if our web site was domain.com, our e-commerce website is secure-domain.com.
I am totally stumped, but there must be a way to stop the SE's from crawling this shopping cart.
I know I could use <meta name="robots" content="noindex,nofollow">, but I heard that currently only few robots support this tag. Is this true?
I also have the alternate option of putting this javascript code into the header of each page with products on it:
<script language="JavaScript">
function cart(action) {
window.open('https://secure-exoticracing.com/exotic/cart.lasso','cart','status=yes,menubar=no,scrollba rs=yes,resizable=yes,width=720,height=600');
return false;
}
</script>
If I use the java script, I understand that robots cant crawl java links, but what happens to the robot....does he just stop crawling the site when he hits the java, or does he just ignore it and continue crawling the site?
Any help will be greatly appreciated. Thanks!
Submit Your Article
Forum Rules

Reply With Quote
