<?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 Web Development</title>
	<atom:link href="http://www.ip-seo.com/latest/category/seo-web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ip-seo.com/latest</link>
	<description>Intelligent Postioning (IP SEO)</description>
	<lastBuildDate>Tue, 13 Jul 2010 08:39:29 +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>Three Canonicalization Problems Fixed with .htaccess</title>
		<link>http://www.ip-seo.com/latest/2010/05/three-canonicalization-problems-fixed-with-htaccess/</link>
		<comments>http://www.ip-seo.com/latest/2010/05/three-canonicalization-problems-fixed-with-htaccess/#comments</comments>
		<pubDate>Tue, 04 May 2010 10:35:16 +0000</pubDate>
		<dc:creator>Andrew Mabbott</dc:creator>
				<category><![CDATA[SEO Web Development]]></category>

		<guid isPermaLink="false">http://www.ip-seo.com/latest/?p=701</guid>
		<description><![CDATA[Given the detrimental effect duplicate content can have on search engine rankings, it is surprising how common canonicalization issues are, even on major websites. Fortunately, however, many of these problems can be easily solved by appropriate use of redirects to enforce a single URL for each piece of unique content. In this article, we look [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ip-seo.com/latest/wp-content/uploads/apache.jpg" alt="" title="apache" width="100" height="70" class="alignleft size-full wp-image-1146" />Given the detrimental effect duplicate content can have on search engine rankings, it is surprising how common canonicalization issues are, even on major websites. Fortunately, however, many of these problems can be easily solved by appropriate use of redirects to enforce a single URL for each piece of unique content. In this article, we look at three common canonicalization issues and how they can be fixed using .htaccess and 301 redirects. <span id="more-701"></span></p>
<p>For any of this to work you&#8217;ll need an Apache server with mod_rewrite enabled. To get started, add the following to the top of your .htaccess file. If this results in a 500 server error, your host probably doesn&#8217;t support mod_rewrite, and there is likely not much you can do about it.</p>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;"><span style="color: #00007f;">Options</span> +<span style="color: #0000ff;">FollowSymLinks</span>
<span style="color: #00007f;">RewriteEngine</span> <span style="color: #0000ff;">On</span></pre></div></div>

<h2>Domain Canonicalization</h2>
<p>While many web users view www.example.com and example.com as functionally equivalent addresses, search engines cannot make such an assumption since, technically, the URLs <em>are</em> different and a webserver <em>could</em> return different content for each. In reality, hosting packages often automatically create a &#8216;www&#8217; subdomain to serve the same content as the main domain, leading to many pages appearing twice in search results – both with and without the &#8216;www&#8217; prefix.</p>
<p>The simple fix for this is to pick one domain to use as the canonical hostname and redirect any requests for other domains to that one:</p>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;"><span style="color: #00007f;">RewriteCond</span> %{HTTP_HOST} !^www.<span style="color: #00007f;">example</span>.com [NC]
<span style="color: #00007f;">RewriteRule</span> ^(.*)$ http://www.<span style="color: #00007f;">example</span>.com/$<span style="color: #ff0000;">1</span> [L,R=<span style="color: #ff0000;">301</span>]</pre></div></div>

<h2>HTTP/HTTPS Canonicalization</h2>
<p>Websites handling sensitive information (e.g. ecommerce) will often need to make use of secure connections via the https protocol. Typically, this is only required for certain parts of the site, such as those accessed via a login, but links to the https versions of normal pages often creep into search results.</p>
<p>The following example ensures that any requests for paths beginning with &#8216;/checkout&#8217; will be redirected to https if they are not using the secure protocol, but attempts to access any other parts of the site via https will be redirected to their non-https equivalents.</p>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;"><span style="color: #adadad; font-style: italic;"># redirect non-https requests for /checkout to https</span>
<span style="color: #00007f;">RewriteCond</span> %{HTTPS} <span style="color: #0000ff;">off</span>
<span style="color: #00007f;">RewriteRule</span> ^checkout/ https://%{HTTP_HOST}%{REQUEST_URI} [R=<span style="color: #ff0000;">301</span>,L]
<span style="color: #adadad; font-style: italic;"># redirect all other https requests to http</span>
<span style="color: #00007f;">RewriteCond</span> %{HTTPS} <span style="color: #0000ff;">on</span>
<span style="color: #00007f;">RewriteCond</span> $<span style="color: #ff0000;">1</span> !^checkout/
<span style="color: #00007f;">RewriteRule</span> ^(.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=<span style="color: #ff0000;">301</span>,L]</pre></div></div>

<h2>Directory Index Canonicalization</h2>
<p>Apache allows us to specify a list of pages which will be returned if a directory page is requested (i.e. a url ending with a slash), such as http://www.example.com/. Typically, index.html or index.php are used. However, direct access to these files is not prevented and careless creation of links can easily lead to http://www.example.com/ and http://www.example.com/index.php appearing in search results separately.</p>
<p>The following rule ensures that any requests ending in /index.php will be redirected to the parent directory.</p>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;"><span style="color: #adadad; font-style: italic;"># matches original request header</span>
<span style="color: #adadad; font-style: italic;"># (to avoid infinite loop with apache internal rewriting)</span>
<span style="color: #00007f;">RewriteCond</span> %{THE_REQUEST} ^[A-Z]{<span style="color: #ff0000;">3</span>,<span style="color: #ff0000;">9</span>}\ /.*index\.php\ HTTP/
<span style="color: #00007f;">RewriteRule</span> ^(.*)index\.php$ http://%{HTTP_HOST}/$<span style="color: #ff0000;">1</span> [R=<span style="color: #ff0000;">301</span>,L]</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.ip-seo.com/latest/2010/05/three-canonicalization-problems-fixed-with-htaccess/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How Google (and other SEs) crawl and ranks PDF files</title>
		<link>http://www.ip-seo.com/latest/2009/10/how-google-crawl-and-ranks-pdf-files/</link>
		<comments>http://www.ip-seo.com/latest/2009/10/how-google-crawl-and-ranks-pdf-files/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 10:10:52 +0000</pubDate>
		<dc:creator>andrea</dc:creator>
				<category><![CDATA[SEO Web Development]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[rankings]]></category>

		<guid isPermaLink="false">http://www.ip-seo.com/latest/?p=889</guid>
		<description><![CDATA[There is one common thing that link web 2.0 users: the necessity to take part of this new fantastic world contributing to it, inserting web pages, picture, documents, comments and so on. So it’s not rare to see emerging web sites containing tons of new material rather than a forum at the top of the SERPs. And [...]]]></description>
			<content:encoded><![CDATA[<p>There is one common thing that link web 2.0 users: the necessity to take part of this new fantastic world contributing to it, inserting web pages, picture, documents, comments and so on. So it’s not rare to see emerging web sites containing tons of new material rather than a forum at the top of the SERPs. And it’s not rare to see different type of documents rather than a standard web page. Documents like a Word file, Power point presentation, PDF etc.<span id="more-889"></span></p>
<h2>Search engines love text</h2>
<p><img class="alignleft size-full wp-image-892" style="margin-top: 10px; margin-bottom: 10px; margin-left: 15px; margin-right: 15px;" title="pdf-files-ranking" src="http://www.ip-seo.com/latest/wp-content/uploads/pdf-files-ranking.jpg" alt="pdf-files-ranking" width="174" height="201" />So if you write a document with some special formatting, that doesn’t fit well into a web page or contains some graphics that must be preserved, you can publish over the web converting it to a PDF file, and let it accessible to the entire world.</p>
<p>Search engines are smart enough to crawl your web pages and index (normally) all the link and documents contained. Google started to index PDF documents later in 2001 so they are not completely new to this kind of stuff, but recently they enhanced the quality and the user experience introducing the “<a href="http://googleblog.blogspot.com/2009/10/quickly-view-formatted-pdfs-in-your.html">Quick View</a>&#8221; PDFs feature.</p>
<p>The reason why Google developed “Quick View” was due to poor quality of the “View as HTML” feature, originally developed to “translate” a file into a document readable directly into the browser (unless searchers weren’t interested in opening it into different applications after downloading it).</p>
<p>Unfortunately the “View as HTML” feature isn’t perfect and often the layout proposed doesn’t respect the original one. These kind of problems no longer exist thanks to Quick View which has changed its approach to opening PDF files, opening the documents directly into the browser whilst keeping the formatting intact.</p>
<p>But, well formatted or not, <strong>a PDF document – as any other web page – should be optimized before being shown in the SERP</strong>.</p>
<h2>How can I optimize my PDF file for ranking?</h2>
<p>Having looked into research papers, that contained possible indicators on how to properly optimize a PDF document, I was unable to find <a rel="nofollow" href="http://www.joetheseo.com/2009/10/optimize-pdf-files---seo.html">anything</a> <a rel="nofollow" href="http://www.pagetrafficblog.com/tips-for-optimizing-pdf-files-for-search-engines/4358/">really</a> <a rel="nofollow" href="http://freelance-seoindia.blogspot.com/2009/05/optimize-pdf-files-for-search-engines.html">useful</a>. Since I’m aware (are you?) Google is particularly interested in details and quality, I decided to spend some time to create a test case to evaluate many different combinations of the same PDF document to understand which factors really influences the PDF ranking.</p>
<p>The test has been published on a recently registered domain, so I can entirely appreciate the results that I will collect from this test.</p>
<p>To stay updated about this test, or to simply have a look at it, point your web browser to my “<a href="http://www.andreamoro.eu/SEO-Test-PDF/">PDF ranking and indexing test</a>”.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ip-seo.com/latest/2009/10/how-google-crawl-and-ranks-pdf-files/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<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 does Google read flash?</title>
		<link>http://www.ip-seo.com/latest/2009/06/how-does-google-read-flash/</link>
		<comments>http://www.ip-seo.com/latest/2009/06/how-does-google-read-flash/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 17:13:21 +0000</pubDate>
		<dc:creator>Andrew Mabbott</dc:creator>
				<category><![CDATA[SEO Web Development]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.ip-seo.com/latest/?p=710</guid>
		<description><![CDATA[As Daniel identifies in his recent post, Google is indexing increasing quantities of flash content, and returning such content further up the search results. This raises the question of what web designers can do to see how google will experience their flash content.

The process of indexing flash is more challenging than for web pages for [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-719 alignleft" style="padding-right:10px;" title="flash-logo" src="http://www.ip-seo.com/latest/wp-content/uploads/flash-logo.jpg" alt="Flash" width="50" height="50" />As Daniel identifies in his <a title="Google Gets Better. Search Engine Reads Flash" href="/latest/2009/05/google-gets-better-search-engine-reads-flash/">recent post</a>, Google is indexing increasing quantities of flash content, and returning such content further up the search results. This raises the question of what web designers can do to see how google will experience their flash content.</p>
<p><span id="more-710"></span></p>
<p>The process of indexing flash is more challenging than for web pages for two reasons. With its clearly defined structure, XHTML provides a rich description of content – it identifies headings, paragraphs, and lists and provides a way to assign metadata such as title and description – it is by definition a markup language. Flash is not: flash is a multimedia platform focussed on interaction and experience and providing fewer semantic cues to search engine robots. In addition, Flash supports storing entire applications within a single file, allowing multiple pages of content to share a single URL and thus presenting as a single indexable resource.</p>
<p>According to a <a href="http://googlewebmastercentral.blogspot.com/2008/06/improved-flash-indexing.html">Google announcement</a> last year..</p>
<blockquote><p>&#8220;We&#8217;ve developed an algorithm that explores Flash files in the same way that a person would, by clicking buttons, entering input, and so on. Our algorithm remembers all of the text that it encounters along the way, and that content is then available to be indexed.&#8221;</p></blockquote>
<p>Unsurprisingly, the details of this algorithm are not public, although Google suggest that it is <a href="http://www.adobe.com/devnet/flashplayer/articles/swf_searchability.html">based on Adobe&#8217;s Searchable SWF library</a>. While Adobe says that content developers do not need to do anything in order to benefit from the improved indexing of swf files, they do provide a utility called the Search Engine SDK which was originally designed by Macromedia to &#8220;provide search engines with the means to search and index Macromedia Flash movies&#8221;.</p>
<p>The tool is available for free, but it&#8217;s quite hidden on the Adobe website and you do need to sign up to the Adobe Player Licensing Program. The best way to get it is via this link: <a href="https://www.adobe.com/cfusion/entitlement/index.cfm?e=search_sdk">https://www.adobe.com/cfusion/entitlement/index.cfm?e=search_sdk</a>. Follow the prompts to sign up and verify your email and you&#8217;ll receive a download link.</p>
<p>For anyone not familiar with command-line applications, here&#8217;s how to use the tool on windows:</p>
<ol>
<li>Extract the flash_search_sdk.zip file somewhere on your computer.</li>
<li>Open the extracted folder and copy the swf2html.exe file from the &#8216;windows&#8217; directory to a new directory such as C:\swf</li>
<li>Copy the swf file you want to convert into the same directory.</li>
<li>Fire up a terminal window (in Vista, click the start button, type &#8216;cmd&#8217; in the search field and press enter)</li>
<li>Switch to the directory containing the tool
<pre>cd c:\swf</pre>
</li>
<li>enter the following (where myswf is the name of your flash file):
<pre>swf2html myswf.swf</pre>
</li>
</ol>
<p>This will output the html to the screen, but if you&#8217;d like to save the html to a file (for viewing in your browser) then simply redirect the output as follows:</p>
<pre>swf2html myswf.swf &gt; myhtml.html</pre>
<p>While the tool won&#8217;t show you exactly what will appear in search engines, a quick look at the output should give you some idea whether all of the important content is visible as text, and conversely whether unimportant text could be hidden (for example, by converting it to images within the Flash).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ip-seo.com/latest/2009/06/how-does-google-read-flash/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
