After 2 months of no search engine recognition (a small start in the MSN engine) I have been posting on a few SEO forums. Generally they tell me there's a few things wrong with my site, which is naturally disappointing, but i need to start putting them right.
So first things first can anyone advice how i impliment the following change?
Your home page contains Code:
<html>
<head>
<title>Cakes Cookies and craft shop redirect</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name = "robots" content = "noindex,follow">
<script language="JavaScript">
window.location="http://www.cakescookiesandcraftsshop.co.uk/acatalog/"
</script>
</head>
<body>
</body>
</html>
The noindex means that you prohibit indexing of the page by search engines. The "follow" means that you invite search engines to follow the links in the page, but most search engines do not process JavaScript links and your window.location="..." is a JavaScript link. There is no other link in the page.
It would be much better to put the content of the /acatalog/ page in the home page. Obviously you would need to remove the "noindex".
Thank you in advance
So first things first can anyone advice how i impliment the following change?
Your home page contains Code:
<html>
<head>
<title>Cakes Cookies and craft shop redirect</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name = "robots" content = "noindex,follow">
<script language="JavaScript">
window.location="http://www.cakescookiesandcraftsshop.co.uk/acatalog/"
</script>
</head>
<body>
</body>
</html>
The noindex means that you prohibit indexing of the page by search engines. The "follow" means that you invite search engines to follow the links in the page, but most search engines do not process JavaScript links and your window.location="..." is a JavaScript link. There is no other link in the page.
It would be much better to put the content of the /acatalog/ page in the home page. Obviously you would need to remove the "noindex".
Thank you in advance
Comment