<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SEO News &#187; SEO</title>
	<atom:link href="http://www.ip-seo.com/latest/tag/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ip-seo.com/latest</link>
	<description>Intelligent Postioning (IP SEO)</description>
	<lastBuildDate>Thu, 05 Aug 2010 09:57:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>X-Robots-Tag: Control Google Indexing via HTTP Headers</title>
		<link>http://www.ip-seo.com/latest/2009/08/x-robots-tag-control-google-indexing-via-http-headers/</link>
		<comments>http://www.ip-seo.com/latest/2009/08/x-robots-tag-control-google-indexing-via-http-headers/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 09:22:54 +0000</pubDate>
		<dc:creator>Andrew Mabbott</dc:creator>
				<category><![CDATA[SEO Web Development]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[noindex]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[x-robots-tag]]></category>

		<guid isPermaLink="false">http://www.ip-seo.com/latest/?p=794</guid>
		<description><![CDATA[The X-Robots-Tag allows crawler directives to be sent in HTTP Headers, allowing the noindex attribute to be used with images.]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve all got used to being able to control how the major search engines index our sites using a combination of robots.txt and the robots meta tag to add attributes like &#8216;noindex&#8217; to individual pages. While this works great for the pages themselves, it&#8217;s not so good for non-HTML, indexable content such as PDFs or embedded media, as we have no HTML &lt;meta> tag in which to insert the meta-information. In this article we take a look at a potential solution to this problem: the <em>X-Robots-Tag</em> HTTP Header.<br />
<span id="more-794"></span></p>
<h2>The X-Robots-Tag Header</h2>
<p>The idea behind X-Robots-Tag is that it allows robots directives normally found in a meta element to be sent as part of the server&#8217;s HTTP response headers. In other words the instructions are sent <em>with</em> the file rather than <em>within</em> the file, with the main advantage that this can be used with any type of content. So an HTTP response might look like this (using the <a target="_blank" href="https://addons.mozilla.org/en-US/firefox/addon/3829">Live HTTP Headers</a> plugin for Firefox):</p>
<p style="border:1px dashed #999; padding:5px">
<code>HTTP/1.x 200 OK<br />
Date: Thu, 27 Aug 2009 09:21:23 GMT<br />
Server: Apache/2.0.52 (Red Hat)<br />
Connection: close<br />
Transfer-Encoding: chunked<br />
Content-Type: text/html<br />
<span style="background:#ccc;">X-Robots-Tag: noindex</span><br />
</code>
</p>
<h2>A &#8216;noindex&#8217; for Images</h2>
<p>As an example consider the case of a webmaster wishing to prevent images being indexed and appearing in search results. One approach might be to add the entire &#8216;images&#8217; directory to the robots.txt file (i.e. <code>Disallow: /images</code>). The problem with this is that the robots.txt file provides crawling directives rather than indexing directives &#8211; that is, the search engine is instructed not to visit the &#8216;images&#8217; directory when crawling your site, but could still end up at one of your images if it is embedded in someone else&#8217;s site. Furthermore, what if we only want to block crawlers from certain images &#8211; the robots.txt file would quickly become large and unmanageable.</p>
<h2>X-Robots-Tag in Apache (htaccess)</h2>
<p>A combination of &#8216;Header set&#8217; and the FilesMatch directive allows us to add the robots tag in Apache. Here&#8217;s a couple of examples which could be in Apache&#8217;s httpd.conf or .htaccess files.</p>
<p>Add &#8216;noindex&#8217; header to all image files:</p>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;">&lt;<span style="color: #000000; font-weight:bold;">FilesMatch</span> <span style="color: #7f007f;">&quot;<span style="color: #000099; font-weight: bold;">\.</span>(gif|jpe?g|png)$&quot;</span>&gt;
<span style="color: #00007f;">Header</span> set X-Robots-Tag <span style="color: #7f007f;">&quot;noindex&quot;</span>
&lt;/<span style="color: #000000; font-weight:bold;">FilesMatch</span>&gt;</pre></div></div>

<p>Add noindex to image files matching a particular pattern &#8211; in this case those with &#8216;thumbnail&#8217; in the filename (i.e. /images/product41-thumbnail.jpg would be served with a noindex header while /images/product41-large.jpg would not):</p>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;">&lt;<span style="color: #000000; font-weight:bold;">FilesMatch</span> <span style="color: #7f007f;">&quot;images/.+-thumbnail<span style="color: #000099; font-weight: bold;">\.</span>jpg$&quot;</span>&gt;
<span style="color: #00007f;">Header</span> set X-Robots-Tag <span style="color: #7f007f;">&quot;noindex&quot;</span>
&lt;/<span style="color: #000000; font-weight:bold;">FilesMatch</span>&gt;</pre></div></div>

<h2>X-Robots-Tag in PHP</h2>
<p>PHP&#8217;s header function allows us to send any HTTP header, as follows:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'X-Robots-Tag: noindex,nofollow'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>This supports more complex scenarios than using Apache alone. Rather than applying the same rule to all images, we could use some custom logic such as a database lookup to determine whether to add the X-Robots-Tag header. The first step would be to route requests for images to a php script using Apache&#8217;s .htaccess file (e.g. requests for jpeg files within the images directory will be handled by &#8216;image-handler.php&#8217;).</p>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;"><span style="color: #00007f;">RewriteEngine</span> <span style="color: #0000ff;">On</span>
<span style="color: #00007f;">RewriteRule</span> ^images/.*.jpg$ image-handler.php</pre></div></div>

<p>Then in image-handler.php, we can perform our custom logic (defined in the allowImageIndexing() function) and set the appropriate header:<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$filename</span> <span style="color: #339933;">=</span> <span style="color: #990000;">basename</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_URI'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// extract image filename </span>
<span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Content-Type: image/jpg'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>             <span style="color: #666666; font-style: italic;">// set content type (otherwise it </span>
                                               <span style="color: #666666; font-style: italic;">// will be the dafault text/html)</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>allowImageIndexing<span style="color: #009900;">&#40;</span><span style="color: #000088;">$filename</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>          <span style="color: #666666; font-style: italic;">// perform lookup</span>
    <span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'X-Robots-Tag: noindex'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>           <span style="color: #666666; font-style: italic;">// set the x-robots-tag accordingly</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #990000;">readfile</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'images/'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$filename</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>               <span style="color: #666666; font-style: italic;">// stream image file in response</span></pre></div></div>

<p></code></p>
<h2>X-Robots-Tag Search Engine Support</h2>
<p>Fortunately the three major search engines all now support the X-Robots-Tag</p>
<ul>
<li>Google &#8211; supports <a href="http://googleblog.blogspot.com/2007/07/robots-exclusion-protocol-now-with-even.html">any value which can be used in the robots &lt;meta> tag</a></li>
<li>Yahoo &#8211; supports <a href="http://www.ysearchblog.com/2007/12/05/yahoo-search-support-for-x-robots-tag-directive-to-simplify-webmasters-control-and-weather-update/">noindex, noarchive, nofollow, nosnippet</a></li>
<li>Bing &#8211; <a href="http://www.bing.com/community/blogs/webmaster/archive/2008/06/03/robots-exclusion-protocol-joining-together-to-provide-better-documentation.aspx">as Yahoo plus noodp</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ip-seo.com/latest/2009/08/x-robots-tag-control-google-indexing-via-http-headers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How often does Google change its SERPS &#8211; search results?</title>
		<link>http://www.ip-seo.com/latest/2009/05/how-often-does-good-change-its-serps-search-results/</link>
		<comments>http://www.ip-seo.com/latest/2009/05/how-often-does-good-change-its-serps-search-results/#comments</comments>
		<pubDate>Mon, 18 May 2009 19:32:37 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[SEO Watch]]></category>
		<category><![CDATA[google SEO]]></category>
		<category><![CDATA[long tail search]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.ip-seo.com/latest/?p=705</guid>
		<description><![CDATA[Someone wrote in a business blog I read earlier &#8220;Has Google changed its SERP results, I&#8217;m no longer number one, has anyone else noticed a change?&#8221; Which made me laugh. Then it made me think, how often does Google change its SERPS?
The answer is quite simple, it&#8217;s got to be millions of times a day. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ip-seo.com/latest/wp-content/uploads/google-logo.png" alt="google-logo" title="google-logo" width="100" height="35" class="alignleft size-full wp-image-567" />Someone wrote in a business blog I read earlier &#8220;Has Google changed its SERP results, I&#8217;m no longer number one, has anyone else noticed a change?&#8221; Which made me laugh. Then it made me think, how often does Google change its SERPS?<span id="more-705"></span></p>
<p>The answer is quite simple, it&#8217;s got to be millions of times a day. Hasn&#8217;t it? </p>
<p>There was a time when Google would visit even the biggest sites once a week, once a month or only 6 times a year. Now Google visits certain sites such as <a href="http://www.bbc.co.uk">www.bbc.co.uk</a>, <a href="http://www.sky.com">www.sky.com</a> and <a href="http://www.guardian.co.uk">www.guardian.co.uk</a> every 15 mins. </p>
<h2>Test Google Crawl speed</h2>
<p>Try it now. Take a very recent headline from the Guardian news page, then search for it. If it doesn&#8217;t appear, wait five minutes, then search again. Bingo &#8211; it&#8217;ll be in the top 5 searches (depending on how many words you used). </p>
<p>Now copy a handful of words from the article and paste them into google search. Again the result will be the new page. </p>
<h2>Millions of Keywords and amendments</h2>
<p>Think about how many keywords have therefore changed in the last five minutes and how this has therefore effected 1000s of SERPS results with ten of thousands of derivatives of keywords and permutations on the results. (Read the first blog post and I will be back to tell you how quickly the article was crawled.) </p>
<p>SERPS are therefore changing all the time. As one result goes to the top of the Google SERPS, others are slipping down. And as the new article gets less credit or another usurps it, then that too will slip down, thus changing the SERPS again. </p>
<p>This IP-SEO URL tracker tool shows just that. </p>
<div id="attachment_706" class="wp-caption aligncenter" style="width: 635px"><img src="http://www.ip-seo.com/latest/wp-content/uploads/picture-121.png" alt="Buy toys online" title="picture-121" width="625" height="535" class="size-full wp-image-706" /><p class="wp-caption-text">Buy toys online</p></div>
<p>This is a chart for &#8220;Buy Toys Online&#8221; on google, over the Christmas period and beyond &#8211; a big search at a busy time. The SERPS are changing every day throughout the top 100 results. </p>
<p>This Chart (one of our <a href="http://www.ip-seo.com/seo-services/seo-analytics/">SEO tools</a>) also only takes a snap-shot of a daily search, not one done every 15 mins or half an hour. </p>
<p>To find out more give us a bell or drop a line below with your comments. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ip-seo.com/latest/2009/05/how-often-does-good-change-its-serps-search-results/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Why does Live search continue to rank dead websites?</title>
		<link>http://www.ip-seo.com/latest/2009/05/why-does-live-search-continue-to-rank-dead-website/</link>
		<comments>http://www.ip-seo.com/latest/2009/05/why-does-live-search-continue-to-rank-dead-website/#comments</comments>
		<pubDate>Fri, 15 May 2009 14:07:24 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[SEO Watch]]></category>
		<category><![CDATA[illegal websites]]></category>
		<category><![CDATA[Live search]]></category>
		<category><![CDATA[rankings]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.ip-seo.com/latest/?p=688</guid>
		<description><![CDATA[Why is it that Live search continues to return a broken link at the top of the rankings, even though the website has not been live since the end of January?  Is this the main reason that Live search has a 8.2% market share in the US and Google has a 64.2% market share.
So [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ip-seo.com/latest/wp-content/uploads/live-search.png" alt="live-search" title="live-search" width="55" height="51" class="alignleft size-full wp-image-738" />Why is it that Live search continues to return a broken link at the top of the rankings, even though the website has not been live since the end of January?  Is this the main reason that <a rel="nofollow" href="http://blogs.barrons.com/techtraderdaily/2009/05/15/google-again-gains-share-in-core-us-internet-search/">Live search has a 8.2% market share in the US and Google has a 64.2% market share</a>.</p>
<p>So why is Live search still returning an illegal movie website at the top of their rankings for a popular keyword term?</p>
<p><span id="more-688"></span><br />
www.watch-movies.net was apparently closed down and reopened under another domain &#8211; which is a different argument altogether &#8211; and still returns on page one in Live.com for the search term &#8216;<a rel="nofollow" href="http://search.live.com/results.aspx?q=download+movies+online&amp;go=&amp;form=QBLH&amp;filt=all">Download Movies Online</a>&#8216;, so why is this?  Why does a search engine that wants to compete with Google still returns a broken link to an apparent illegal website within their SERP&#8217;s?  There are many <a href="http://www.blinkbox.com">legitimate Movies</a> available online &#8211; so why is a perfectly normal search query returning poor results?</p>
<p>Take a look at the screenshot below:</p>
<p><img class="aligncenter size-full wp-image-693" title="Snippet of 'watch-movies.net' " src="http://www.ip-seo.com/latest/wp-content/uploads/picture-13.png" alt="Snippet of 'watch-movies.net' " width="598" height="92" /></p>
<p>This is appearing in your search results today for a highly competitive keyword term.  So why is it still there?  Does Live continue to reward the huge volumes of backlinks pointing to the website?  For some reason the webmaster didn&#8217;t place a 301 redirect on the website &#8211; which of course would have passed over page value and history to the new domain.</p>
<p>Take a look at the performance of the website within Google, Yahoo! and Live over the past five months:</p>
<p><img src="http://www.ip-seo.com/latest/wp-content/uploads/picture-22.png" alt="Google, Yahoo! &amp; Live rankings for watch-movies.net" title="Google, Yahoo! &amp; Live rankings for watch-movies.net" width="776" height="491" class="aligncenter size-full wp-image-694" /></p>
<p>So Yahoo! didn&#8217;t even rank the website highly in the first place, Google did but immediately the ranking dropped once the content was removed (even though there were a vast number of backlinks pointing to the website) and then there is Live, which continues to rank a website highly (amidst some fluctuations it has to be said) that hasn&#8217;t be live for over four months&#8230;&#8230;and people wonder why Google has such a stronghold online.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ip-seo.com/latest/2009/05/why-does-live-search-continue-to-rank-dead-website/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Marks and Spencers online sales boost</title>
		<link>http://www.ip-seo.com/latest/2009/03/marks-and-spencers-online-sales-boost/</link>
		<comments>http://www.ip-seo.com/latest/2009/03/marks-and-spencers-online-sales-boost/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 14:36:21 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Online News]]></category>
		<category><![CDATA[Online Sales]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.ip-seo.com/latest/?p=617</guid>
		<description><![CDATA[Despite drops of in-store sales and, in our mind, a lot of scope for greater success in SEO attainable, Marks and Spencer&#8217;s online sales soared 20% in the latest quarter.  
Marks &#38; Spencer Group saw UK like-for-like sales drop 4.2% in the final quarter of the financial year, despite positive online sales growing by [...]]]></description>
			<content:encoded><![CDATA[<p>Despite drops of in-store sales and, in our mind, a lot of scope for greater success in SEO attainable, Marks and Spencer&#8217;s online sales soared 20% in the latest quarter.  <span id="more-617"></span><br />
<br/>Marks &amp; Spencer Group saw UK like-for-like sales drop 4.2% in the final quarter of the financial year, despite positive online sales growing by 20%.<br />
Total UK sales were down 0.3% in the 12 weeks to 28 March 2009, with general merchandise dropping by 1.2%, which includes clothing (-1%) and home (-2.3%).<br />
<br/>However, online sales were up by 20%, while international sales grew by 23% in the same period.</p>
<p><img class="alignright size-full wp-image-620" title="marks-and-spencer" src="http://www.ip-seo.com/latest/wp-content/uploads/marks-and-spencer.png" alt="marks-and-spencer" width="509" height="352" /><br />
Sir Stuart Rose, chairman of Marks &amp; Spencer Group, said, &#8220;While the outlook remains uncertain, we&#8217;re confident that we&#8217;re doing the right things for our customers and for our business.</p>
<p>&#8220;Online sales were up 20% with further growth in market share as we continue to broaden the product offer,&#8221; he added.<br />
<br/><br/><br />
<h2>SEO Recommendations</h2>
<p>There is so much that can be done for the M &amp; S website, and for a company that craves consistency and continued growth it is surprising they don&#8217;t seem to look at it.<br />
Until then good luck with continued online growth.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ip-seo.com/latest/2009/03/marks-and-spencers-online-sales-boost/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Yahoo! appoint new CEO Carol Bartz</title>
		<link>http://www.ip-seo.com/latest/2009/01/yahoo-appoint-new-ceo-carol-bartz/</link>
		<comments>http://www.ip-seo.com/latest/2009/01/yahoo-appoint-new-ceo-carol-bartz/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 09:24:34 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Online News]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.ip-seo.com/latest/?p=215</guid>
		<description><![CDATA[Yahoo! have appointed Carol Bartz, formerly of software company Autodesk, as their new CEO.  Bartz will replace Jerry Yang who stated in November 2008 that he would be stepping down from his role.  Yang co founded Yahoo! with David Filo in 1994.

Due to the nature of Bartz&#8217;s background, some cynics have questioned the motives of [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-486" title="yahoo" src="http://www.ip-seo.com/latest/wp-content/uploads/yahoo.png" alt="yahoo" width="116" height="32" />Yahoo! have appointed Carol Bartz, formerly of software company Autodesk, as their <a href="http://searchengineland.com/wsj-bartz-the-new-yahoo-ceo-16132">new CEO</a>.  Bartz will replace Jerry Yang who stated in November 2008 that he would be <a href="http://www.nytimes.com/2008/11/18/technology/companies/18yahoo.html?_r=1">stepping down from his role</a>.  Yang co founded Yahoo! with David Filo in 1994.<br />
<span id="more-215"></span></p>
<p>Due to the nature of Bartz&#8217;s background, some cynics have questioned the motives of appointing her in such a role.  Many believe that her appointment could rekindle the interest of Microsoft, however the software giants have stated they aren&#8217;t interested in an <a href="http://www.huffingtonpost.com/2008/10/16/microsoft-not-interested_n_135373.html">outright acquisition anymore</a>.</p>
<p>Bartz has an uphill task on her hands with kickstarting the World&#8217;s second favourite search engine fortunes as Google continues to grow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ip-seo.com/latest/2009/01/yahoo-appoint-new-ceo-carol-bartz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
