<?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>Qlick Tech Blog &#187; XML</title>
	<atom:link href="http://www.qlickcafe.com/blogs/tag/xml/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.qlickcafe.com/blogs</link>
	<description>Tech News &#124; Qlick Tips &#124; Games &#124; Gadgets &#124; Web Design &#124; SEO &#124; Enterprise Solutions</description>
	<lastBuildDate>Tue, 10 Jan 2012 09:09:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Creating sitemap.xml manually</title>
		<link>http://www.qlickcafe.com/blogs/qlick-solutions/creating-sitemapxml-manually/</link>
		<comments>http://www.qlickcafe.com/blogs/qlick-solutions/creating-sitemapxml-manually/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 11:52:27 +0000</pubDate>
		<dc:creator>Jhong Medina</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Qlick Solutions]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Site Map]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.qlickcafe.com/blogs/?p=244</guid>
		<description><![CDATA[Wondering &#8230; how to optimized your website for search engines like google? Here&#8217;s one that will help you how to increase your site&#8217;s search engine visibility. How to create Sitemap.xml manually using your plain old text editor&#8230; 1.) Create a text file using notepad and save it Sitemap.xml. 2.) Type or copy the following text [...]]]></description>
			<content:encoded><![CDATA[<p>Wondering &#8230; how to optimized your website for search engines like google?</p>
<p>Here&#8217;s one that will help you how to increase your site&#8217;s search engine visibility.</p>
<p>How to create Sitemap.xml manually using your plain old text editor&#8230;</p>
<p>1.) Create a text file using notepad and save it Sitemap.xml.<br />
2.) Type or copy the following text in the first and second line of the xml file.<br />
&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&gt;</p>
<p>&lt;<a href="http://sitemaps.org/protocol.php#urlsetdef">urlset</a> xmlns=&#8221;http://www.sitemaps.org/schemas/sitemap/0.9&#8243;&gt;</p>
<p><span id="more-244"></span></p>
<p>3.) For each links or pages you wish to be crawl by search engine add the following format.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6253842080202367";
/* 468x60, created 1/13/09 */
google_ad_slot = "9323334255";
google_ad_width = 468;
google_ad_height = 60;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<p>&lt;<a href="http://sitemaps.org/protocol.php#urldef">url</a>&gt;<br />
&lt;<a href="http://sitemaps.org/protocol.php#locdef">loc</a>&gt;http://www.qlickcafe.com/&lt;/loc&gt;<br />
&lt;<a href="http://sitemaps.org/protocol.php#lastmoddef">lastmod</a>&gt;2005-01-01&lt;/lastmod&gt;<br />
&lt;<a href="http://sitemaps.org/protocol.php#changefreqdef">changefreq</a>&gt;monthly&lt;/changefreq&gt;<br />
&lt;<a href="http://sitemaps.org/protocol.php#prioritydef">priority</a>&gt;0.8&lt;/priority&gt;<br />
&lt;/url&gt;</p>
<p>&lt;<a href="http://sitemaps.org/protocol.php#urldef">url</a>&gt;<br />
&lt;<a href="http://sitemaps.org/protocol.php#locdef">loc</a>&gt;http://www.qlickcafe.com/blogs/&lt;/loc&gt;<br />
&lt;<a href="http://sitemaps.org/protocol.php#lastmoddef">lastmod</a>&gt;2005-01-01&lt;/lastmod&gt;<br />
&lt;<a href="http://sitemaps.org/protocol.php#changefreqdef">changefreq</a>&gt;monthly&lt;/changefreq&gt;<br />
&lt;<a href="http://sitemaps.org/protocol.php#prioritydef">priority</a>&gt;0.8&lt;/priority&gt;<br />
&lt;/url&gt;<br />
4. After encoding all your pages or links end it with a closing tag for the urlset.<br />
&#8221; &lt;/urlset&gt; &#8221;</p>
<p>5. Then upload the file to your /root folder where you saved the index.html or index.php .</p>
<p>Note that Sitemap protocol format consists of XML tags. All data values in a Sitemap must                 be <a href="http://sitemaps.org/protocol.php#escaping">entity-escaped</a>. The file itself must be UTF-8 encoded.</p>
<p>The Sitemap must:</p>
<ul>
<li>Begin with an opening <code>&lt;<a href="http://sitemaps.org/protocol.php#urlsetdef">urlset</a>&gt;</code> tag and                     end with a closing <code>&lt;/urlset&gt;</code> tag.</li>
<li>Specify the namespace (protocol standard) within the <code>&lt;urlset&gt;</code> tag.</li>
<li>Include a <code>&lt;<a href="http://sitemaps.org/protocol.php#urldef">url</a>&gt;</code> entry for each URL, as                     a parent XML tag.</li>
<li>Include a <code>&lt;<a href="http://sitemaps.org/protocol.php#locdef">loc</a>&gt;</code> child entry for each <code> &lt;url&gt;</code> parent tag.</li>
</ul>
<p>All other tags are optional. Support for these optional tags may vary among search                 engines. Refer to each search engine&#8217;s documentation for details.</p>
<p>Also, all URLs in a Sitemap must be from a single host, such as www.example.com                 or store.example.com. For further details, refer the <a href="http://sitemaps.org/protocol.php#location">Sitemap file                     location</a></p>
<h3>Sample XML Sitemap</h3>
<p>The following example shows a Sitemap that contains just one URL and uses all optional                 tags. The optional tags are in italics.</p>
<pre><span style="color: #0000ff;">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;</span><a href="http://sitemaps.org/protocol.php#urlsetdef"><span style="color: #0000ff;">urlset</span></a><span style="color: #0000ff;"> xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"&gt;
   &lt;</span><a href="http://sitemaps.org/protocol.php#urldef"><span style="color: #0000ff;">url</span></a><span style="color: #0000ff;">&gt;
      &lt;</span><a href="http://sitemaps.org/protocol.php#locdef"><span style="color: #0000ff;">loc</span></a><span style="color: #0000ff;">&gt;http://www.qlickcafe.com/&lt;/loc&gt;
      </span><em><span style="color: #0000ff;">&lt;</span><a href="http://sitemaps.org/protocol.php#lastmoddef"><span style="color: #0000ff;">lastmod</span></a><span style="color: #0000ff;">&gt;2005-01-01&lt;/lastmod&gt;
      &lt;</span><a href="http://sitemaps.org/protocol.php#changefreqdef"><span style="color: #0000ff;">changefreq</span></a><span style="color: #0000ff;">&gt;monthly&lt;/changefreq&gt;
      &lt;</span><a href="http://sitemaps.org/protocol.php#prioritydef"><span style="color: #0000ff;">priority</span></a><span style="color: #0000ff;">&gt;0.8&lt;/priority&gt;</span></em><span style="color: #0000ff;">
   &lt;/url&gt;
&lt;/urlset&gt;</span></pre>
<div class="betterrelated"><p><h3>Recommended Articles:</h3></p>
<ol><li> <a href="http://www.qlickcafe.com/blogs/qlick-tips-and-tricks/qlick-tips-excel-short-cut-key/" title="Permanent link to Qlick Tips &#8211; Excel Short-Cut Keys">Qlick Tips &#8211; Excel Short-Cut Keys</a>  </li>
<li> <a href="http://www.qlickcafe.com/blogs/gaming/kaels-chaos-meteor-the-ultimate-weapon-in-dota/" title="Permanent link to Kael&#039;s Chaos Meteor &#8211; The Ultimate Weapon in DotA">Kael&#039;s Chaos Meteor &#8211; The Ultimate Weapon in DotA</a>  </li>
<li> <a href="http://www.qlickcafe.com/blogs/qlick-tips-and-tricks/how-to-redirect-your-readers-to-your-new-domain/" title="Permanent link to How to redirect your readers to your new domain.">How to redirect your readers to your new domain.</a>  </li>
<li> <a href="http://www.qlickcafe.com/blogs/news-and-events/intel-philippines-%e2%80%93-shutting-down-this-february-2009/" title="Permanent link to Intel Philippines – Shut Down This Feb 2009">Intel Philippines – Shut Down This Feb 2009</a>  </li>
<li> <a href="http://www.qlickcafe.com/blogs/qlick-solutions/blog-site-package-coming-soon/" title="Permanent link to Blog Site (Word Press) Package">Blog Site (Word Press) Package</a>  </li>
</ol></div>]]></content:encoded>
			<wfw:commentRss>http://www.qlickcafe.com/blogs/qlick-solutions/creating-sitemapxml-manually/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.qlickcafe.com/blogs/tag/xml/feed/ ) in 1.21250 seconds, on Feb 4th, 2012 at 5:15 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 4th, 2012 at 6:15 am UTC -->
