<?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>Aaron Mentele &#187; seo</title>
	<atom:link href="http://aaronmentele.com/tag/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://aaronmentele.com</link>
	<description>personal blog of Aaron Mentele, web developer and partner at Electric Pulp</description>
	<lastBuildDate>Sun, 15 Jan 2012 20:09:12 +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>Humans first, please</title>
		<link>http://aaronmentele.com/2009/03/04/humans-first-please/</link>
		<comments>http://aaronmentele.com/2009/03/04/humans-first-please/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 04:49:33 +0000</pubDate>
		<dc:creator>Aaron Mentele</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[findability]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://aaronmentele.com/?p=667</guid>
		<description><![CDATA[If you&#8217;re doing it right, your goal is never to build an SEO-friendly site. It&#8217;s to build a usable site. The latter leads to the former. Not the other way around. This isn&#8217;t to say SEO doesn&#8217;t work. It&#8217;s only to say SEO is a hack.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re doing it right, your goal is never to build an <em>SEO-friendly</em> site. It&#8217;s to build a <em>usable</em> site. The latter leads to the former. Not the other way around.</p>
<p>This isn&#8217;t to say SEO doesn&#8217;t work. It&#8217;s only to say <strong>SEO is a hack.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://aaronmentele.com/2009/03/04/humans-first-please/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Rewriting URLs</title>
		<link>http://aaronmentele.com/2007/10/01/rewriting-urls/</link>
		<comments>http://aaronmentele.com/2007/10/01/rewriting-urls/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 20:40:12 +0000</pubDate>
		<dc:creator>Aaron Mentele</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[human-readable urls]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://charisma18.com/2007/10/01/rewriting-urls/</guid>
		<description><![CDATA[In my previous post, I mentioned Apache mod_rewrite lets you take a URL like: http://yoursite.com/products/index.php?cat=software&#38;item=Photoshop and convert it to something like: http://yoursite.com/products/software/Photoshop There are two main benefits to formatting URLs the second way. it&#8217;s easier for visitors to read. it&#8217;s easier for Google to index. You also gain a number of positive side effects, one [...]]]></description>
			<content:encoded><![CDATA[<p>In my previous post, I mentioned Apache mod_rewrite lets you take a URL like:<br />
<em>http://yoursite.com/products/index.php?cat=software&amp;item=Photoshop</em><br />
and convert it to something like:<br />
<em>http://yoursite.com/products/software/Photoshop</em></p>
<p>There are two main benefits to formatting URLs the second way.</p>
<ul>
<li>it&#8217;s easier for visitors to read.</li>
<li>it&#8217;s easier for Google to index.</li>
</ul>
<p>You also gain a number of positive side effects, one of which is the ability to keep your variables hidden.  Basically, the only reason <em>not</em> to rewrite URLs is the added effort required to do it.  But, what if the added effort really wasn&#8217;t that significant?</p>
<p>It&#8217;s not.</p>
<p>First, let&#8217;s assume my earlier mention of Apache already turned off anyone not using it (if your rewrite engine doesn&#8217;t match mine, I&#8217;m no good to you.)  Let&#8217;s also assume those who already know how to do this (and probably better than I) already got bored and moved on.</p>
<p>Okay, now if you&#8217;re still with me, all you need to do is create an .htaccess file in the directory you&#8217;re looking to rewrite (/products/ in my case) with the following lines:<br />
<pre><pre>
RewriteEngine on

#Rewrite for software categories
RewriteRule ^([^/\.]*)/([^/\.]*)/?$ index.php?cat=$1&amp;amp;item=$2 [L]</pre></pre><br />
Variables work the same, queries work the same, etc.  It&#8217;s a lot like magic.</p>
<p>That&#8217;s it friends.  Hi5.</p>
]]></content:encoded>
			<wfw:commentRss>http://aaronmentele.com/2007/10/01/rewriting-urls/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

