![]() |
|
|||||||||
In order to control the way search robots process certain pages on a website, it is possible to use the robots tag. This tags controls the following factors:
The major problem with this method (as well as with others) is that there are robots that simply ignore the site owner's requests and scan despite specific prohibitions. However, these methods work great with the major search engines. Where to place the robots meta tagThe robots tag is a meta tag, and like other meta tags, it should be placed at the first part of the HTML page that is called HEAD. Code example: <html>
<head> <meta name="robots" content="noindex,nofollow"> <title>Blue Widgets</title> </head> <body> ... Robots tag structureIf we examine the code above, we will see that the robots tag consists of two parts:
The content includes two commands directed at the search engine, separated by a comma:
Note: the robot tag is not case sensitive. GoogleBot Unique CommandsGoogle's robot (which is also called ' Googlebot) recognizes two additional commands: NOARCHIVE and NOSNIPPET. Usually Google stores the content of its scanned pages in an enormous database that is called Cache. The purpose of this cache is to allow access to the page's content even if it's not active currently, or that the content has changed since Google's last scan. In addition, this cache is used to create the short text (which is a part of the page text) that is displayed with the search results. This text is called Snippet. In order to see the content of the page stored in Google's cache, the user should press the 'cache' link that appears near the search results. In order to prevent storing your website's content in Google's cache, you can use the following code: <html>
<head> <meta name="robots" content="index,follow,noarchive"> <title>Blue Widgets</title> </head> <body> ... In order to prevent the short text from your page text (Snippet) to appear in the search results, you can add the following code line: <meta name="googlebot" content="nosnippet">
Please note that this line also cancels your website's storage in Google's cache.
|
||||||||||
|
||||||||||
|
||||||||||
© 2004-2013 SEO Israel Technologies Ltd. |