<?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"
	>

<channel>
	<title>naslenas.com - lifestyle, web, design, love, money and so on...  :)</title>
	<atom:link href="http://naslenas.com/feed" rel="self" type="application/rss+xml" />
	<link>http://naslenas.com</link>
	<description>Personal blog of Audrius N.</description>
	<pubDate>Sat, 08 Dec 2007 18:37:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Creating search engine friendly WordPress robots.txt file</title>
		<link>http://naslenas.com/wordpress/006-creating-search-engine-friendly-wordpress-robotstxt-file</link>
		<comments>http://naslenas.com/wordpress/006-creating-search-engine-friendly-wordpress-robotstxt-file#comments</comments>
		<pubDate>Thu, 22 Nov 2007 14:38:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[]]></category>

		<category><![CDATA[robots.txt]]></category>

		<category><![CDATA[Search Engine Optimization]]></category>

		<guid isPermaLink="false">http://naslenas.com/?p=6</guid>
		<description><![CDATA[At the moment of writing, the core of this blog is WordPress version 2.3.1. It is sad that it comes not quite ready for the search engines. One of the reasons is missing robots.txt file. Actually if you enter address http://yoursite.com/robots.txt WordPress will show some data from internal configuration, but there is some room for [...]]]></description>
			<content:encoded><![CDATA[<p>At the moment of writing, the core of this blog is WordPress version 2.3.1. It is sad that it comes not quite ready for the search engines. One of the reasons is missing robots.txt file. Actually if you enter address http://yoursite.com/robots.txt WordPress will show some data from internal configuration, but there is some room for improvement.</p>
<p>Let&#8217;s do it right!</p>
<p>First, create empty <strong>robots.txt</strong> file on your local computer. And prepare to fill it with the content explained below.</p>
<p>The first line allows all search engine spiders on your site. Of course it will not protect from parasitic and cloaking crawlers, but all the useful search engine bots read this line correct.</p>
<blockquote>
<pre>User-agent: *</pre>
</blockquote>
<p>Assume, that you already have blog with pretty much content, and do not want bot to occupy all the web-server&#8217;s resources while spidering your content. So, set the interval between crawling links to 10 seconds.</p>
<blockquote>
<pre>Crawl-delay: 10</pre>
</blockquote>
<p>Now, the most important part.  We will disallow to crawl some of the files and directories on your WordPress blog. Those two files below won&#8217;t add any bonuses to your search engine position anyway&#8230;</p>
<blockquote>
<pre>Disallow: /license.txt
Disallow: /readme.html</pre>
</blockquote>
<p>Is there something interesting on admin panel?</p>
<blockquote>
<pre>Disallow: /wp-admin.php</pre>
</blockquote>
<p>Usually RSS feeds are available through different links, so disallow other locations</p>
<blockquote>
<pre>Disallow: /wp-atom.php
Disallow: /wp-commentsrss2.php
Disallow: /wp-feed.php
Disallow: /wp-rss.php
Disallow: /wp-rss2.php
Disallow: /wp-rdf.php</pre>
</blockquote>
<p>Those files should be closed for spiders</p>
<blockquote>
<pre>Disallow: /wp-blog-header.php
Disallow: /wp-comments-popup.php
Disallow: /wp-comments-post.php
Disallow: /wp-config-sample.php
Disallow: /wp-config.php
Disallow: /wp-cron.php
Disallow: /wp-links-opml.php
Disallow: /wp-login.php
Disallow: /wp-mail.php
Disallow: /wp-pass.php
Disallow: /wp-register.php
Disallow: /wp-settings.php
Disallow: /wp-trackback.php
Disallow: /xmlrpc.php</pre>
</blockquote>
<p>Let&#8217;s disallow some directories to be crawled. First - admin directory, this is important!</p>
<blockquote>
<pre>Disallow: /wp-admin/</pre>
</blockquote>
<p>Then - all the rest.</p>
<blockquote>
<pre>Disallow: /wp-content/
Disallow: /wp-includes/
Disallow: /trackback/</pre>
<pre></pre>
</blockquote>
<p>Your feed is linking to your site - so do not waste crawler time and do not penalize yourself.</p>
<blockquote>
<pre>Disallow: /feed/</pre>
</blockquote>
<p>Of course, there may be something interesting for spiders on the default WordPress upload directory, so lets allow them to crawl it.</p>
<blockquote>
<pre>Allow: /wp-content/uploads/</pre>
</blockquote>
<p>Show the location of the sitemap if you have it. This <a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" title="sitemap plugin" target="_blank">plug-in</a>  can generate it for you and may enter similar line itself.</p>
<blockquote>
<pre>Sitemap: http://yoursite.com/sitemap.xml</pre>
</blockquote>
<p>Save the file and upload it into root directory of your site.</p>
<p>What you can expect after:</p>
<ul>
<li>Higher ranking of your main topics</li>
<li>More accurate index of your site content</li>
<li>Less penalties by avoiding duplicate content on RSS feeds</li>
<li>Less traffic from web crawlers (but not less visits!)</li>
<li>Higher self-esteem <img src='http://naslenas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ul>
<p>So, we have finished. Too lazy to ctrl+c and ctrl+v??? Here is the compiled <a href="http://naslenas.com/robots.txt" title="robots.txt of this site" target="_blank">robots.txt</a>. Replace &#8220;naslenas.com&#8221; with your actual WP blog location <img src='http://naslenas.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://naslenas.com/wordpress/006-creating-search-engine-friendly-wordpress-robotstxt-file/feed</wfw:commentRss>
		</item>
		<item>
		<title>Personal blog launch</title>
		<link>http://naslenas.com/lifestyle/005-personal-blog-launch</link>
		<comments>http://naslenas.com/lifestyle/005-personal-blog-launch#comments</comments>
		<pubDate>Thu, 22 Nov 2007 12:57:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Lifestyle]]></category>

		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://naslenas.com/?p=5</guid>
		<description><![CDATA[Welcome dear friends, mates or just this site visitors!
My name is Audrius Našlėnas and I mostly do IT stuff for living. This blog will be dedicated to usefull web stuff, my web designs, cms themes other experience I’ve got while working as systems administrator and freelance web developer. Of course there will be some more [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome dear friends, mates or just this site visitors!</p>
<p>My name is Audrius Našlėnas and I mostly do IT stuff for living. This blog will be dedicated to usefull web stuff, my web designs, cms themes other experience I’ve got while working as systems administrator and freelance web developer. Of course there will be some more or less personal thoughts about life, God, love, women, peace, music, self improvement and so on. Maybe I will promote some of my commercial services as well.</p>
<p>Have a good browsing,</p>
<p>Audrius</p>
]]></content:encoded>
			<wfw:commentRss>http://naslenas.com/lifestyle/005-personal-blog-launch/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
