<?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>Tampa Site Design &#187; multiple sites</title>
	<atom:link href="http://www.tampasitedesign.com/tag/multiple-sites/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tampasitedesign.com</link>
	<description>Chronicles of Website Design</description>
	<lastBuildDate>Sun, 08 Aug 2010 19:36:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SEO tips for new sites</title>
		<link>http://www.tampasitedesign.com/seo-tips-for-new-sites/</link>
		<comments>http://www.tampasitedesign.com/seo-tips-for-new-sites/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 05:10:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[capitalization]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[multiple sites]]></category>
		<category><![CDATA[new sites]]></category>

		<guid isPermaLink="false">http://www.tampasitedesign.com/?p=64</guid>
		<description><![CDATA[Over the years, I&#8217;ve had to apply SEO to a wide variety of sites and it goes without saying, the best SEO is implemented when the site is built!
Nothing is worse than having to build around a messy site. What I mean by messy is lengthy URLS with pointless characters and crazy dynamic URLs! So [...]]]></description>
			<content:encoded><![CDATA[<p>Over the years, I&#8217;ve had to apply SEO to a wide variety of sites and it goes without saying, the best SEO is implemented when the site is built!</p>
<p>Nothing is worse than having to build around a messy site. What I mean by messy is lengthy URLS with pointless characters and crazy dynamic URLs! So here are my tips on creating an SEO-friendly site:</p>
<p>1) Use static URLs when possible. This might not be possible with really large sites, but if your site has less than 50 pages and doesn&#8217;t require new pages to be created all the time, this is definitely the way to go. This is definitely the easiest way and best for SEO. The second best is using an htaccess redirect to use a name in the URL and pass it as a GET variable. Something like this:</p>
<p>http://www.tampacreations.com/portfolio</p>
<p>In this case, portfolio is being passed as a GET variable, and you should always check this against an array of acceptable values! Combine that htaccess code with the proper rewrite condition to tack on the www, and handle forward slashes at the end too. Would you like to see it? Here&#8217;s the code I&#8217;m using:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">Options <span style="color: #339933;">-</span>Indexes
RewriteEngine On
RewriteCond <span style="color: #339933;">%</span><span style="color: #009900;">&#123;</span>HTTP_HOST<span style="color: #009900;">&#125;</span> <span style="color: #339933;">!</span>^www\<span style="color: #339933;">.</span>yourdomain\<span style="color: #339933;">.</span>com$ <span style="color: #009900;">&#91;</span>NC<span style="color: #009900;">&#93;</span>
RewriteRule ^<span style="color: #009900;">&#40;</span><span style="color: #339933;">.+</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span>$ http<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//www.yourdomain.com/$1 [R=301,L]</span>
RewriteCond <span style="color: #339933;">%</span><span style="color: #009900;">&#123;</span>HTTP_HOST<span style="color: #009900;">&#125;</span> ^<span style="color: #009900;">&#40;</span>www<span style="color: #339933;">.</span><span style="color: #009900;">&#41;</span>?yourdomain\<span style="color: #339933;">.</span>com$ <span style="color: #009900;">&#91;</span>NC<span style="color: #009900;">&#93;</span>
RewriteRule ^<span style="color: #009900;">&#40;</span><span style="color: #339933;">.+</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span>$ http<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//www.yourdomain.com/$1 [R=301,L]</span>
RewriteCond <span style="color: #339933;">%</span><span style="color: #009900;">&#123;</span>HTTP_HOST<span style="color: #009900;">&#125;</span> <span style="color: #339933;">!</span>^www\<span style="color: #339933;">.</span>yourdomain\<span style="color: #339933;">.</span>com$ <span style="color: #009900;">&#91;</span>NC<span style="color: #009900;">&#93;</span>
RewriteRule ^<span style="color: #009900;">&#40;</span><span style="color: #339933;">.*</span><span style="color: #009900;">&#41;</span>$ http<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//www.yourdomain.com/$1 [R=301,L]</span>
RewriteRule ^<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span>^<span style="color: #339933;">/</span>\<span style="color: #339933;">.</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">+</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span>?$ index<span style="color: #339933;">.</span>php?page<span style="color: #339933;">=</span>$<span style="color: #cc66cc;">1</span> <span style="color: #009900;">&#91;</span>L<span style="color: #009900;">&#93;</span></pre></div></div>

<p>So that&#8217;s the second best option if you have to go with dynamic URLs and it works pretty well! I believe I&#8217;m using PHP, then, to set 404 status of not found domains. </p>
<p>2) Search Pages can be a nightmare! Search pages can be problematic because they&#8217;re dynamic by nature and can end up having lots of variables in them. I think the trick here is to have a few of them indexed (the simple ones) and list those in your sitemap. The other ones you can let Google figure out or just deny it access.</p>
<p>3) Watch out for capitalization! Capitalization counts in URLs (just not the domain), so if I were to have a page Portfolio.html and portfolio.html, those are two different pages! If you&#8217;re using dynamic URLs, this can become a big problem with duplicate content.</p>
<p>4) Multiple websites. Lot of e-commerce site owners have the mentality that duplicating their entire store 5 times and putting it on 5 different domains helps their SEO out. Probably not a good idea. What ends up happening is since most stores have a lot of products, the owners use the same descriptions, same images, everything, and all the sites end up having duplicated content issues! I happy to report that a client I worked with who had this issue across 4 domains, downsized to one domain, and has twice as much traffic now after doing so in about 12 months. It takes time, but it&#8217;s worth it. The only way you should keep 5 different stores is if all the stores are different! Different product titles, different descriptions for each page, keywords, product descriptions, shipping text, contact text, etc. etc. etc. Everything should be completely different if you want to rank well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tampasitedesign.com/seo-tips-for-new-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

