<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Solving the Big URL Issues</title>
	<atom:link href="http://outspokenmedia.com/internet-marketing-conferences/solving-the-big-url-issues/feed/" rel="self" type="application/rss+xml" />
	<link>http://outspokenmedia.com/internet-marketing-conferences/solving-the-big-url-issues/</link>
	<description></description>
	<lastBuildDate>Fri, 08 Mar 2013 16:32:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Brian</title>
		<link>http://outspokenmedia.com/internet-marketing-conferences/solving-the-big-url-issues/#comment-16416</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Wed, 13 Oct 2010 01:40:03 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=8442#comment-16416</guid>
		<description><![CDATA[Lisa,
Sorry about the heiroglyphics!  Thanks for covering this.]]></description>
		<content:encoded><![CDATA[<p>Lisa,<br />
Sorry about the heiroglyphics!  Thanks for covering this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: seriocomic</title>
		<link>http://outspokenmedia.com/internet-marketing-conferences/solving-the-big-url-issues/#comment-16311</link>
		<dc:creator>seriocomic</dc:creator>
		<pubDate>Wed, 06 Oct 2010 23:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=8442#comment-16311</guid>
		<description><![CDATA[For those that need the code (and are operating websites on an apache based server):

From www to no-www:
&lt;code&gt;
  RewriteEngine on

  # 301 redirect to domain without &#039;www.&#039;
  RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
  RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
&lt;/code&gt;
From no-www to www:
&lt;code&gt;
  RewriteEngine on

  # 301 redirect to domain to &#039;www.&#039;
  RewriteCond %{HTTP_HOST} ^example.com$ [NC]
  RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
&lt;/code&gt;
I used to be no-www until I wanted to make use of pipelining and CDNs to speed up my site and wanted to control what content sent cookies and what didn&#039;t. Using sub-domains allows you to do this.]]></description>
		<content:encoded><![CDATA[<p>For those that need the code (and are operating websites on an apache based server):</p>
<p>From www to no-www:<br />
<code><br />
  RewriteEngine on</p>
<p>  # 301 redirect to domain without 'www.'<br />
  RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]<br />
  RewriteRule ^(.*)$ <a href="http://example.com/$1" rel="nofollow">http://example.com/$1</a> [R=301,L]<br />
</code><br />
From no-www to www:<br />
<code><br />
  RewriteEngine on</p>
<p>  # 301 redirect to domain to 'www.'<br />
  RewriteCond %{HTTP_HOST} ^example.com$ [NC]<br />
  RewriteRule ^(.*)$ <a href="http://www.example.com/$1" rel="nofollow">http://www.example.com/$1</a> [R=301,L]<br />
</code><br />
I used to be no-www until I wanted to make use of pipelining and CDNs to speed up my site and wanted to control what content sent cookies and what didn&#8217;t. Using sub-domains allows you to do this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Portugese Wijn</title>
		<link>http://outspokenmedia.com/internet-marketing-conferences/solving-the-big-url-issues/#comment-16284</link>
		<dc:creator>Portugese Wijn</dc:creator>
		<pubDate>Wed, 06 Oct 2010 08:21:47 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=8442#comment-16284</guid>
		<description><![CDATA[Thanks for the excellent write-up Lisa! I noticed that you don&#039;t use the www in the domain of your own site and I have chosen to ommit it too because I think it looks cleaner that way. Unfortunately many people who link to my site keep adding the www because they either think it is required or do this out of habit and I wonder if this means I don&#039;t get the full benefit of those links in my ranking. Even though I am 301-ing the www to the non-www domain I read somewhere that 301&#039;s do not transfer 100% of the pagerank (don&#039;t remember where I read this though...)

What is your view on this? Should I stick with the non-www version or add the www?]]></description>
		<content:encoded><![CDATA[<p>Thanks for the excellent write-up Lisa! I noticed that you don&#8217;t use the www in the domain of your own site and I have chosen to ommit it too because I think it looks cleaner that way. Unfortunately many people who link to my site keep adding the www because they either think it is required or do this out of habit and I wonder if this means I don&#8217;t get the full benefit of those links in my ranking. Even though I am 301-ing the www to the non-www domain I read somewhere that 301&#8242;s do not transfer 100% of the pagerank (don&#8217;t remember where I read this though&#8230;)</p>
<p>What is your view on this? Should I stick with the non-www version or add the www?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabriele Maidecchi</title>
		<link>http://outspokenmedia.com/internet-marketing-conferences/solving-the-big-url-issues/#comment-16271</link>
		<dc:creator>Gabriele Maidecchi</dc:creator>
		<pubDate>Tue, 05 Oct 2010 18:47:47 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=8442#comment-16271</guid>
		<description><![CDATA[Nobody answered your question, how rude, here: YES you made sense :D]]></description>
		<content:encoded><![CDATA[<p>Nobody answered your question, how rude, here: YES you made sense :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dawn Wentzell</title>
		<link>http://outspokenmedia.com/internet-marketing-conferences/solving-the-big-url-issues/#comment-16269</link>
		<dc:creator>Dawn Wentzell</dc:creator>
		<pubDate>Tue, 05 Oct 2010 18:35:46 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=8442#comment-16269</guid>
		<description><![CDATA[Mmm...URLs...  #wishiwasthere]]></description>
		<content:encoded><![CDATA[<p>Mmm&#8230;URLs&#8230;  #wishiwasthere</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kristin</title>
		<link>http://outspokenmedia.com/internet-marketing-conferences/solving-the-big-url-issues/#comment-16268</link>
		<dc:creator>Kristin</dc:creator>
		<pubDate>Tue, 05 Oct 2010 18:30:23 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=8442#comment-16268</guid>
		<description><![CDATA[Thanks for the great post, the url length information was fantastic!]]></description>
		<content:encoded><![CDATA[<p>Thanks for the great post, the url length information was fantastic!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edward Beckett</title>
		<link>http://outspokenmedia.com/internet-marketing-conferences/solving-the-big-url-issues/#comment-16267</link>
		<dc:creator>Edward Beckett</dc:creator>
		<pubDate>Tue, 05 Oct 2010 18:12:43 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=8442#comment-16267</guid>
		<description><![CDATA[Nice Post ... Thanks for the share John ... It&#039;s been a while buddy  :-)]]></description>
		<content:encoded><![CDATA[<p>Nice Post &#8230; Thanks for the share John &#8230; It&#8217;s been a while buddy  :-)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
