<?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: Permanent Redirect From Root Links</title>
	<atom:link href="http://www.daily-seo.com/permanent-redirect-from-root-links/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.daily-seo.com/permanent-redirect-from-root-links/</link>
	<description>SEO Blog Search Engine Optimization</description>
	<lastBuildDate>Fri, 23 Oct 2009 09:40:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Doug</title>
		<link>http://www.daily-seo.com/permanent-redirect-from-root-links/comment-page-1/#comment-89</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Wed, 24 Aug 2005 16:01:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.daily-seo.com/archives/2005/06/14/permanent-redirect-from-root-links/#comment-89</guid>
		<description>Let&#039;s say we have a  database driven blog, which may have some variables 
in the url.  Example:

http://www.adomainname.com/blogs_ma/?u=me

What is your take on using a domain name and forwarding that to that blog, or forwarding and masking that domain name to that blog?  How would the search engines treat each?

Thanks!</description>
		<content:encoded><![CDATA[<p>Let&#8217;s say we have a  database driven blog, which may have some variables<br />
in the url.  Example:</p>
<p><a href="http://www.adomainname.com/blogs_ma/?u=me" rel="nofollow">http://www.adomainname.com/blogs_ma/?u=me</a></p>
<p>What is your take on using a domain name and forwarding that to that blog, or forwarding and masking that domain name to that blog?  How would the search engines treat each?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tom sherman</title>
		<link>http://www.daily-seo.com/permanent-redirect-from-root-links/comment-page-1/#comment-70</link>
		<dc:creator>tom sherman</dc:creator>
		<pubDate>Thu, 23 Jun 2005 12:11:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.daily-seo.com/archives/2005/06/14/permanent-redirect-from-root-links/#comment-70</guid>
		<description>I have seen it elsewhere, too.  It will still work, but it&#039;s suboptimal.

In a RewriteCond, the last part is a regular expression.  In a regex, a period is a special character meaning &quot;any character.&quot;  So ^domain.com matches &quot;domainXcom&quot;, &quot;domain&amp;com&quot;, and &quot;domain$com&quot;, as well as the intended &quot;domain.com&quot;.

By escaping the period, you&#039;re forcing it to be interpreted literally.  Thus, ^domain\.com can be interpreted only as &quot;domain.com&quot;.  It&#039;s unambiguous and slightly more efficient.</description>
		<content:encoded><![CDATA[<p>I have seen it elsewhere, too.  It will still work, but it&#8217;s suboptimal.</p>
<p>In a RewriteCond, the last part is a regular expression.  In a regex, a period is a special character meaning &#8220;any character.&#8221;  So ^domain.com matches &#8220;domainXcom&#8221;, &#8220;domain&amp;com&#8221;, and &#8220;domain$com&#8221;, as well as the intended &#8220;domain.com&#8221;.</p>
<p>By escaping the period, you&#8217;re forcing it to be interpreted literally.  Thus, ^domain\.com can be interpreted only as &#8220;domain.com&#8221;.  It&#8217;s unambiguous and slightly more efficient.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daily SEO</title>
		<link>http://www.daily-seo.com/permanent-redirect-from-root-links/comment-page-1/#comment-65</link>
		<dc:creator>Daily SEO</dc:creator>
		<pubDate>Fri, 17 Jun 2005 13:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.daily-seo.com/archives/2005/06/14/permanent-redirect-from-root-links/#comment-65</guid>
		<description>What would be the disadvantage of using  ^domain.com ? Because I have been using this on several sites (including Daily-SEO) and never faced a problem.</description>
		<content:encoded><![CDATA[<p>What would be the disadvantage of using  ^domain.com ? Because I have been using this on several sites (including Daily-SEO) and never faced a problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tom sherman</title>
		<link>http://www.daily-seo.com/permanent-redirect-from-root-links/comment-page-1/#comment-59</link>
		<dc:creator>tom sherman</dc:creator>
		<pubDate>Wed, 15 Jun 2005 05:57:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.daily-seo.com/archives/2005/06/14/permanent-redirect-from-root-links/#comment-59</guid>
		<description>In the RewriteCond:

RewriteCond %{HTTP_HOST} ^domain.com [NC]

It is more efficient and less ambiguous to write it as:

RewriteCond %{HTTP_HOST} ^domain\.com [NC]

Because the &quot;^domain\.com&quot; part is a regular expression, you want to force the period to be interpreted literally.</description>
		<content:encoded><![CDATA[<p>In the RewriteCond:</p>
<p>RewriteCond %{HTTP_HOST} ^domain.com [NC]</p>
<p>It is more efficient and less ambiguous to write it as:</p>
<p>RewriteCond %{HTTP_HOST} ^domain\.com [NC]</p>
<p>Because the &#8220;^domain\.com&#8221; part is a regular expression, you want to force the period to be interpreted literally.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

