<?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>Canton Becker &#187; SEO</title>
	<atom:link href="http://cantonbecker.com/tag/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://cantonbecker.com</link>
	<description>Music, Web Design, Projects</description>
	<lastBuildDate>Sun, 20 May 2012 02:23:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Strip www off URLs at GoDaddy using .htaccess mod_rewrite</title>
		<link>http://cantonbecker.com/work/musings/2009/strip-www-off-urls-at-godaddy-using-htaccess-mod_rewrite/</link>
		<comments>http://cantonbecker.com/work/musings/2009/strip-www-off-urls-at-godaddy-using-htaccess-mod_rewrite/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 21:08:06 +0000</pubDate>
		<dc:creator>Canton</dc:creator>
				<category><![CDATA[Musings]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://cantonbecker.com/?p=604</guid>
		<description><![CDATA[Here&#8217;s how to remove the www. from your domain name so that Google won&#8217;t &#8220;split&#8221; your pagerank as a result of some inbound links going to www.foo.com and others going to foo.com. (Google will see this as two separate sites.) This tip is tuned to work at GoDaddy, where using mod_rewrite can be a real [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Here&#8217;s how to</strong><strong> remove the www. from your domain name</strong> so that Google won&#8217;t &#8220;split&#8221; your pagerank as a result of some inbound links going to www.foo.com and others going to foo.com. (Google will see this as two separate sites.) This tip is tuned to work at GoDaddy, where using mod_rewrite can be a real pain because GoDaddy has some unfortunate default Apache settings that prevent ordinary rewrites from working properly out-of-the-box.</p>
<p><strong>Add these lines to the top of your .htaccess file:</strong><br />
<pre><code>
# Override GoDaddy defaults that inhibit URL rewriting
Options -MultiViews
rewriteEngine On

# Rewrite URLs to remove www from domain name
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
</code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://cantonbecker.com/work/musings/2009/strip-www-off-urls-at-godaddy-using-htaccess-mod_rewrite/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

